Viewing 4 posts - 1 through 4 (of 4 total)
Ummm... The first problem with this question is that the query will not run as written. The correct answer should be C. It doesn't matter whether a correctly written query...
January 24, 2006 at 8:16 am
Also, your query is returning rows everytime the ID in test = an ID in test. This will always evaluate to True. You will get a row back for every...
March 8, 2005 at 11:27 am
Since it is a varchar field and not int, you will need to set your fallback value in the coalesce to a varchar value.
coalesce(b.accountNumber, c.accountNumber, d.accountNumber,'No Value') <> 'No Value'
March 8, 2005 at 11:10 am
March 4, 2005 at 10:18 am
Viewing 4 posts - 1 through 4 (of 4 total)