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?
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;
Thanks.
Your SQL code is creating a dataset.
To display a dataset use PROC PRINT.
proc print data=lab1;
run;
April 27 – 30 | Gaylord Texan | Grapevine, Texas
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!
Still thinking about your presentation idea? The submission deadline has been extended to Friday, Nov. 14, at 11:59 p.m. ET.
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.
Ready to level-up your skills? Choose your own adventure.