BookmarkSubscribeRSS Feed
tianerhu
Pyrite | Level 9
libname certadv 'C:\SAS data and program\data\data set used in OG of SAS adv\certadv';
proc sql;
  create table work.lab1 as
    select *
	from certadv.lab3
	where name in (select name from certadv.lab12);
quit;

above is my program. How to display the result of my program in the output window?

4 REPLIES 4
SASKiwi
PROC Star

If you just want to see the data rows being selected in the Output window just remove the CREATE TABLE part of your query:

libname certadv 'C:\SAS data and program\data\data set used in OG of SAS adv\certadv';
proc sql;
  /* create table work.lab1 as */
    select *
	from certadv.lab3
	where name in (select name from certadv.lab12);
quit;
tianerhu
Pyrite | Level 9

Thanks.

Tom
Super User Tom
Super User

Your SQL code is creating a dataset.

To display a dataset use PROC PRINT.

proc print data=lab1;
run;
tianerhu
Pyrite | Level 9
Thank you for your help.
How to Concatenate Values

Learn how use the CAT functions in SAS to join values from multiple variables into a single value.

Find more tutorials on the SAS Users YouTube channel.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 4 replies
  • 1750 views
  • 0 likes
  • 3 in conversation