neomorpheus
Programmer
I have a list as below....
SYSDATE,USERNAME,CLIENTIP,URLSTEM,URLQUERY,REFERER,NODEID
I want to be able to replace the SYSDATE in the list as "convert(nvarchar, sysdate,101) as sysdate", so that my revised list would be:
convert(nvarchar, sysdate,101) as sysdate, USERNAME, CLIENTIP, URLSTEM, URLQUERY, REFERER, NODEID
Any help on achieving this is appreciated??? Thanks
SYSDATE,USERNAME,CLIENTIP,URLSTEM,URLQUERY,REFERER,NODEID
I want to be able to replace the SYSDATE in the list as "convert(nvarchar, sysdate,101) as sysdate", so that my revised list would be:
convert(nvarchar, sysdate,101) as sysdate, USERNAME, CLIENTIP, URLSTEM, URLQUERY, REFERER, NODEID
Any help on achieving this is appreciated??? Thanks