Jul 23, 2003 #1 sthmpsn1 MIS Sep 26, 2001 456 US Is there anyway to go through a table with an sql statement and replace any null values with a space " "?
Is there anyway to go through a table with an sql statement and replace any null values with a space " "?
Jul 23, 2003 #2 JamesLean Programmer Dec 13, 2002 3,059 GB Code: UPDATE t SET c = ' ' WHERE c IS NULL --James Upvote 0 Downvote