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;
It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.
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.