Hello Experts,
The error says expecting a ','. But I am not sure what is that. Can you please check and clarify it?
30 proc sql;
31 select a.*,
32 b.accountstatuskey_current,
33 b.accountstatuskey_previous,
34 b.Datekey as Movement_Date date9.
_____
78
76
ERROR 78-322: Expecting a ','.
ERROR 76-322: Syntax error, statement will be ignored.
35 from work.add_repcode as a
36 inner join DWHDW.fact_tx_AccountStatus as b on a.Accountkey = b.Accountkey;
NOTE: PROC SQL set option NOEXEC and will continue to check the syntax of statements.
37 quit;
NOTE: The SAS System stopped processing this step because of errors.