I need to update the Confirmation Date Time field to NULL for a specific meeting but am unsure how to insert it. The script below works for an individual but if they have more than 1 confirmation date it clears then all.
Meet_Master.MEETING is where the meeting code AM2011 is.
UPDATE
ORDERS SET CONFIRMATION_DATE_TIME = NULL WHERE ORDERS.ST_ID = '236477'
Thanks!
Software/Hardware used:
SQL Server 2005
ASKED:
August 23, 2011 4:27 PM
UPDATED:
March 31, 2012 5:49 PM
DJandLO, if this means that the answer to your previous question was helpful, please take a moment to approve Meandyou‘s answer.
Thanks,
Meandyou’s answer didn’t show up on the post but, I clicked thru your comment and was able to view and approve.
thanks
Ultimately I ended up doing:
UPDATE Orders SET Orders.CONFIRMATION_DATE_TIME = NULL
FROM Orders INNER JOIN Meet_Master
On Orders.STATUS = Meet_Master.STATUS
WHERE Meet_Master.MEETING = ‘AM2011′