G gautam89 Registered User. Local time Today, 02:05 Joined Jul 19, 2007 Messages 13 Aug 3, 2007 #1 Hi everyone, I have a a table called [Email Database] with many fields I need to create a query that replaces all Null values with blanks or "" I'm not that familiar with SQL so any help would be appreciated!
Hi everyone, I have a a table called [Email Database] with many fields I need to create a query that replaces all Null values with blanks or "" I'm not that familiar with SQL so any help would be appreciated!
SQL_Hell SQL Server DBA Local time Today, 10:05 Joined Dec 4, 2003 Messages 1,361 Aug 3, 2007 #2 Hi there, You need the NZ function, like.... SELECT NZ(email,"") FROM [Email Database] Also is your table actually called 'Email Database'? it is bad database design to have table names with spaces in them.
Hi there, You need the NZ function, like.... SELECT NZ(email,"") FROM [Email Database] Also is your table actually called 'Email Database'? it is bad database design to have table names with spaces in them.