Reputation: 165
below is the code and error I get, can anyone help?
proc sql;
SELECT DateOfFill, DUEXIS AS DUEXIS, PENNSAID AS PENNSAID, RAYOS AS RAYOS,VIMOVO AS VIMOVO
FROM (select DateOfFill, product, ftrx from PSKW.PSKWMaster) src
pivot
(
sum(ftrx) for [Product] in
(DUEXIS, PENNSAID,RAYOS,VIMOVO)) PVT;
quit;
ERROR 76-322: Syntax error, statement will be ignored.
5 (
6 sum(ftrx) for [Product] in
7 ([DUEXIS], [PENNSAID],[RAYOS],[VIMOVO])) PVT;
8 quit;
NOTE: The SAS System stopped processing this step because of errors. NOTE: PROCEDURE SQL used (Total process time): real time 0.03 seconds cpu time 0.01 seconds
9 SELECT DateOfFill, DUEXIS AS DUEXIS, PENNSAID AS PENNSAID, RAYOS AS RAYOS,VIMOVO AS VIMOVO ------ 180 ERROR 180-322: Statement is not valid or it is used out of proper order.
10 FROM (select DateOfFill, product, ftrx from PSKW.PSKWMaster) src
11 pivot
12 (
13 sum(ftrx) for [Product] in
14 (DUEXIS, PENNSAID,RAYOS,VIMOVO)) PVT;
15 quit;
Upvotes: 0
Views: 1913
Reputation: 51566
That does not look like valid syntax for PROC SQL. Perhaps you meant to use a passthru query into your SQL database?
proc sql;
connect to odbc (.....);
select * from connection to odbc
(select ... pivot ... )
;
quit;
Upvotes: 3