There are 200 observations in a dataset, i want to pull out
the observation no's 100, 150,180,190 by using Proc SQL? How
you can get it?
Answer Posted / pranoy tikadar
PROC SQL;
SELECT*,
MONOTONIC() AS COUNT
FROM TEST
HAVING COUNT IN(100,150,180,190);
QUIT;
| Is This Answer Correct ? | 11 Yes | 3 No |
Post New Answer View All Answers
What is the difference between order and group variable in proc report?
What are the different operating system platforms in which we can use sas? : sas-grid-administration
Name any two sas spawners? : sas-grid-administration
Differentiate between ceil and floor functions.
What are the difficulties u faced while doing vital signs table or dataset?
Compare sas with other data analytics tools.
Explain what is data step?
how to do user inputs and command line arguments in sas?
For a user to have access to a standard workspace server, is internal authentication alone is sufficient? : sas-grid-administration
What are the 3 components in sas programming?
What is the difference between class statement and by statement in proc means?
what is hierarchy flattening? : Sas-di
How do you connect the desktop application to metadata server? : sas-grid-administration
Describe the ways in which you can create macro variables? : sas-macro
Differentiate between sas functions and sas procedures.