I\'m running a really simple query, however for some of the results the value in one field is null. How can I set that value to \"a string\" if its value is null?
Someth
You just use ISNULL(website, 'yourstring').
ISNULL(website, 'yourstring')
So, your query will be like:
SELECT RegName, RegEmail, RegPhone, RegOrg, RegCountry, DateReg, ISNULL(website, 'no website') AS WebSite FROM RegTakePart WHERE Reject IS NULL