Hi all,
I just want to insert a date in the column where it is null.I tried a query but its not working.
INSERT INTO TotalMessages
(ReqDate)
VALUES ('2/25/2008')
WHERE reqdate = NULL
Error near where clause.
Thanks in advance.
Regards.
I just want to insert a date in the column where it is null.I tried a query but its not working.
INSERT INTO TotalMessages
(ReqDate)
VALUES ('2/25/2008')
WHERE reqdate = NULL
Error near where clause.
Thanks in advance.
Regards.
Comment