BookmarkSubscribeRSS Feed
HashimBasheer
Fluorite | Level 6


Hello,

I received an query from user as below.

Proc sql; 

Create table test1 as

(select M.*

from

          (select A.*,

            count(distinct po)

        over (partition by system, id, key, cd)as cnt

       from   

                test A

         )M

where cnt>1

group BY

      1 ,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17)

;

quit

;

When running the query user is getting an error

ERROR 22-322: Syntax error, expecting one of the following: !, !!, &, *, **, +, ',', -, /, <, <=, <>, =, >, >=, ?, AND, BETWEEN,
              CONTAINS, EQ, EQT, GE, GET, GT, GTT, LE, LET, LIKE, LT, LTT, NE, NET, OR, ^=, |, ||, ~=. 

ERROR 76-322: Syntax error, statement will be ignored.

   

Is this because of the "over partition by system"?

4 REPLIES 4
AhmedAl_Attar
Ammonite | Level 13

Yes, Your SQL looks like Oracle's SQL syntax.

As far as I know, SAS SQL does not support the "Over" syntax.

HashimBasheer
Fluorite | Level 6

Thanks Ahmed.

Do you think there is a better way to modify the query?

AhmedAl_Attar
Ammonite | Level 13

You probably would have to break the query into multiple queries/tables

TomKari
Onyx | Level 15

OVER is a feature of SQL 2003 that SAS hasn't implemented at this point, that allows for "Determining the partitioning and ordering of a rowset before the associated window function is applied." (I've never used it myself).

You'll have to either restructure your query for SAS, or, if your query is to an exernal database, use pass-through to pass the OVER clause to the database.

Tom

hackathon24-white-horiz.png

The 2025 SAS Hackathon has begun!

It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.

Latest Updates

Creating Custom Steps in SAS Studio

Check out this tutorial series to learn how to build your own steps in SAS Studio.

Find more tutorials on the SAS Users YouTube channel.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 4 replies
  • 1963 views
  • 4 likes
  • 3 in conversation