In our existing microsoft access database several queries had expressions which use this function. In converting to SQL server these have been lost. Is there an alternative?? James Goodman
Use IsNull. IsNull(ColName, 'NONE') will substitute 'NONE' when the column is Null. IsNull(ColName, 0) Will substitute zero for Null. Terry L. Broadbent - Salt Lake City, UT
Home of the 2002 Winter Olympics (Feb 8-24)
Thanks, Terry and RPredrag, I first looked to online help for answer to this and didn't find the answer, though it's probably there somewhere. Tek-Tips was second place I checked and I had your answer almost immediately. Total time from occurrence of question to me to finding answer here was about 10 minutes. I really like it when I don't waste much time on simple stuff like this; unfortunately things don't always work out this way.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.