🔒 This topic is solved and locked.
Need further help from the community? Please
sign in and ask a new question.
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Posted 09-03-2012 04:35 PM
(36481 views)
Hi,
I'm new to SAS. Is there a way to output a PROC SQL query to a SAS dataset rather than a report?
1 ACCEPTED SOLUTION
Accepted Solutions
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Yes, of course. For example :
proc SQL;
create table myTable as
select * from SASHELP.CLASS;
quit;
PG
PG
2 REPLIES 2
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Yes, of course. For example :
proc SQL;
create table myTable as
select * from SASHELP.CLASS;
quit;
PG
PG
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Thank you very much PG!