BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
Riteshdell
Quartz | Level 8

hello Experts,

 

Is there any way to get First.ID result with proc sql.

Please let me know.

data readin;
input ID Name $ Score;
cards;
1     David   45
1     David   74
2     Sam     45
2     Ram     54
3     Bane    87
3     Mary    92
3     Bane    87
4     Dane    23
5     Jenny   87
5     Ken     87
6     Simran  63
8     Priya   72
;
run;

PROC SORT DATA = READIN;
BY ID;
RUN;

DATA READIN1;
SET READIN;
BY ID;
First_ID= First.ID;
RUN;

Expected output by proc sql method.

 

Ritesh_dellvostro_0-1597319016223.png

 

1 ACCEPTED SOLUTION

Accepted Solutions
Kurt_Bremser
Super User

You can do it by using the undocumented MONOTONIC() function:

proc sql;
create table want (drop=mn) as
  select
    a.*,
    monotonic() as mn,
    case
      when calculated mn = min(calculated mn)
      then 1
      else 0
    end as first_id
  from readin a
  group by id
  order by id, mn
;
quit;

Bur compare this to the extremely simple and easy to understand data step code. Maxim 14: Use the Right Tool.

View solution in original post

3 REPLIES 3
Tom
Super User Tom
Super User

Not really.  SQL does not have a concept of row orders.  Newer versions of SQL had to invent a whole complex system of "windowing" functions to implement that.  But PROC SQL does not support those more modern constructs.

 

Do you have ordering variable you can use to order the observations within the group?  Is it unique?  If so then use that.

For example lets make one on your example data by adding a variable called ROW so we can demonstrate. 

data readin_ordered;
  set readin;
  by id;
  if first.id then row=0;
  row+1;
run;

proc sql ;
create table want as
  select *,row=min(row) as first_id
  from readin_ordered
  group by id
  order by id,row
;
quit;
Obs    ID    Name      Score    row    first_id

  1     1    David       45      1         1
  2     1    David       74      2         0
  3     2    Sam         45      1         1
  4     2    Ram         54      2         0
  5     3    Bane        87      1         1
  6     3    Mary        92      2         0
  7     3    Bane        87      3         0
  8     4    Dane        23      1         1
  9     5    Jenny       87      1         1
 10     5    Ken         87      2         0
 11     6    Simran      63      1         1
 12     8    Priya       72      1         1
Kurt_Bremser
Super User

You can do it by using the undocumented MONOTONIC() function:

proc sql;
create table want (drop=mn) as
  select
    a.*,
    monotonic() as mn,
    case
      when calculated mn = min(calculated mn)
      then 1
      else 0
    end as first_id
  from readin a
  group by id
  order by id, mn
;
quit;

Bur compare this to the extremely simple and easy to understand data step code. Maxim 14: Use the Right Tool.

Riteshdell
Quartz | Level 8

Thank you , @Kurt_Bremser 

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
  • 3 replies
  • 2626 views
  • 1 like
  • 3 in conversation