ghell
07-05-2005, 05:23 PM
im looking for a way to check if the NAME field is in an array, in the where clause this would look like this:
where name in ('a', 'b')
but i just want it to return it as it currently is but have an extra field returned true or false (tbh it doesnt matter how its returned, it just needs to be different depending on the result)
for example this code doesnt workselect name, gender, (name in ('mike', 'dave')) as blnIsMikeOrDave from sometable where gender = 'm'this is for use in an asp page and i would prefer a single line than a stored proc for it (ms sql server 2000 btw)
where name in ('a', 'b')
but i just want it to return it as it currently is but have an extra field returned true or false (tbh it doesnt matter how its returned, it just needs to be different depending on the result)
for example this code doesnt workselect name, gender, (name in ('mike', 'dave')) as blnIsMikeOrDave from sometable where gender = 'm'this is for use in an asp page and i would prefer a single line than a stored proc for it (ms sql server 2000 btw)