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.

SAS Innovate 2025: Call for Content

Are you ready for the spotlight? We're accepting content ideas for SAS Innovate 2025 to be held May 6-9 in Orlando, FL. The call is open until September 25. Read more here about why you should contribute and what is in it for you!

Submit your idea!

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
  • 926 views
  • 0 likes
  • 3 in conversation