Nov 11, 2008 #1 hapax Programmer Joined Nov 10, 2006 Messages 105 Location US I have a table like this: VendorID VendorDate -------- ---------- 1234 10-1-2008 3467 10-22-2008 7655 10-9-2008 etc... I need to set all the values in the VendorDate column to NULL. How do I do this? Either SQL or a stored proc if fine.
I have a table like this: VendorID VendorDate -------- ---------- 1234 10-1-2008 3467 10-22-2008 7655 10-9-2008 etc... I need to set all the values in the VendorDate column to NULL. How do I do this? Either SQL or a stored proc if fine.
Nov 11, 2008 #2 r937 Technical User Joined Jun 30, 2002 Messages 8,847 Location CA Code: UPDATE daTable SET VendorDate = NULL r937.com | rudy.ca Upvote 0 Downvote