BookmarkSubscribeRSS Feed
Babloo
Rhodochrosite | Level 12

I know this is not a direct SAS question but still if someone can help it would be nice.  I'm connecting to Snowflake with explicit passthrough.

 

Any idea how to write the query like below without

  • introducing any new fields,
  • using exclude keyword
  • using CTE
  • using all the fields in group by

 This sql is not working due to 'unexcepted over'. I want to select the max of ntwk_cd group or partition by the field PBK

 

SELECT   top 1 * over(partition by PBK order by ntwk_cd desc)  FROM PRAC12
WHERE ID = '098'
and PBK=063;
1 REPLY 1
Patrick
Opal | Level 21

I never used it but based on documentation here I believe your are looking for the Snowflake QUALIFY clause.

Patrick_0-1709796643965.png

 

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
  • 1 reply
  • 340 views
  • 0 likes
  • 2 in conversation