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.

Ready to join fellow brilliant minds for the SAS Hackathon?

Build your skills. Make connections. Enjoy creative freedom. Maybe change the world. Registration is now open through August 30th. Visit the SAS Hackathon homepage.

Register today!
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.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

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