Skip to content
Advertisement

is it possible to select EXISTS directly as a bit?

I was wondering if it’s possible to do something like this (which doesn’t work):

select cast( (exists(select * from theTable where theColumn like 'theValue%') as bit)

Seems like it should be doable, but lots of things that should work in SQL don’t 😉 I’ve seen workarounds for this (SELECT 1 where… Exists…) but it seems like I should be able to just cast the result of the exists function as a bit and be done with it.

Advertisement

Answer

No, you’ll have to use a workaround.

If you must return a conditional bit 0/1 another way is to:

Or without the cast:

User contributions licensed under: CC BY-SA
6 People found this is helpful
Advertisement