Nov 11, 2008 #1 hapax Programmer Nov 10, 2006 105 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 Jun 30, 2002 8,847 CA Code: UPDATE daTable SET VendorDate = NULL r937.com | rudy.ca Upvote 0 Downvote