chgvar &sqlCmd ('select zoned(client_n,6,0) as client_n , max(case when client_act = ''S'' then ''S'' else '' '' end) as Field_1 from clientact group by client_n order by client_n')
RJSIMAGE/DOCSQL SQLSTM(&SQLCMD) OUTPUT(*OUTFILE)
Field_1 is null-capable.
Is it possible to run this SELECT and create Field_1 which does NOT allow nulls?
Or do I have to Create the table first with "Not Null" for the field?
I was hoping to do something like:
chgvar &sqlCmd ('select zoned(client_n,6,0) as client_n , max(case when client_act = ''S'' then ''S'' else '' '' end) as Field_1 NOT NULL from clientact group by client_n order by client_n')
^^^^^^^^
RJSIMAGE/DOCSQL SQLSTM(&SQLCMD) OUTPUT(*OUTFILE)
But this doesn't work.
Thanks
______________________________________________________________________
This outbound email has been scanned for all viruses by the MessageLabs Skyscan service.
For more information please visit
http://www.symanteccloud.com
______________________________________________________________________
As an Amazon Associate we earn from qualifying purchases.