BookmarkSubscribeRSS Feed
sun538
Obsidian | Level 7

Hi,

 

I ran the following code to do union a table with some manual values :

proc sql;
SELECT DISTINCT id, sub_id 
FROM mytable union all select 'A','A' union all select 'B','B' union all select 'C','C' ; quit;

 

However, I gets an error saying :

 

ERROR 22-322: Syntax error, expecting one of the following: a quoted string, !, !!, &, *, **, +, ',', -, /, <, <=, <>, =, >, >=, ?, 
              AND, AS, BETWEEN, CONTAINS, EQ, EQT, FORMAT, FROM, GE, GET, GT, GTT, IN, INFORMAT, INTO, IS, LABEL, LE, LEN, LENGTH, 
              LET, LIKE, LT, LTT, NE, NET, NOT, NOTIN, OR, TRANSCODE, ^, ^=, |, ||, ~, ~=.  

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

 

Could you please let me know how I should change the code to perform well, as this same code is easily run in SQL Server. Thanks

2 REPLIES 2
ballardw
Super User

Create another data set that contains three rows of data and union that data set

 

Many (most) implementations of SQL have extensions that are not standard ANSI SQL. So just because some syntax works in one do not expect all of the "features" to work in another SQL. I suspect that the set operators Union and such are expected to work on Tables in the standard SQL and you have encountered yet another extension that SQL Server supports that other SQLs don't.

Tom
Super User Tom
Super User

You cannot just SELECT, you have to have something to select FROM.

Just make a little dataset.

data template;
  if 0 then set mytable(keep=id sub_id);
  input id sub_id;
cards;
A A
B B
C C
;

proc sql;
SELECT DISTINCT id, sub_id FROM mytable
union all select id, sub_id FROM template
;
quit;

sas-innovate-2026-white.png



April 27 – 30 | Gaylord Texan | Grapevine, Texas

Registration is open

Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and lock in 2025 pricing—just $495!

Register now

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