BookmarkSubscribeRSS Feed
jhh197
Pyrite | Level 9

Hi ,

Just wanted to check what extra step I need to add  to select 10 records from table1

 

PROC SQL;

   CONNECT TO odbc  as test

    (PATH=ksts  userid=ksdetail password=&hh);

            CREATE TABLE MyTable AS

            SELECT *

            FROM CONNECTION TO test (

                 SELECT

                       t1.ID

                      FROM Table1 t1

                   );

             DISCONNECT FROM test;

QUIT;

 

Can anyone help

 

Thanks

2 REPLIES 2
SASKiwi
PROC Star

Using your program this is the easiest way, not necessarily the most efficient:

 

PROC SQL;

   CONNECT TO odbc  as test

    (PATH=ksts  userid=ksdetail password=&hh);

            CREATE TABLE MyTable (obs= 10) AS

            SELECT *

            FROM CONNECTION TO test (

                 SELECT

                       t1.ID

                      FROM Table1 t1

                   );

             DISCONNECT FROM test;

QUIT;
Tom
Super User Tom
Super User

The only TABLE1 in that query is in a remote database.

So you need to know what syntax that database allows for limiting the number of observations returned by a query.

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
  • 2 replies
  • 527 views
  • 0 likes
  • 3 in conversation