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-2026-white.png



April 27 – 30 | Gaylord Texan | Grapevine, Texas

Registration is open

Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and lock in 2025 pricing—just $495!

Register now

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