vote up 0 vote down star
1

does anyone know if sqlite supports the sql function "if" in the select..

for example

select if( length( a ) > 4 , a , ' ') as b
from foo

which would return a if the length was over 4 chars long.. or else it would return ' ' as b

if it doe support a condition in the select what is the syntax is should be using?

i have checked http://sqlite.org/lang%5Fcorefunc.html but i cant see it.

flag

80% accept rate

3 Answers

vote up 3 vote down check

See the case expression For your example

select case when length(a) > 4 then a else '' end as b
from foo
link|flag
vote up 2 vote down

You can use case for that:

select case when length(a)>4 then a else ' ' end from foo;
link|flag
Odd; the link doesn't work for iceweasel. It will cause a Document Not Found Error (/lang_5Fexpr.html). The address in the address-bar will be the correct one though (.../lang_expr.html). Not sure why that is. Although the address is correct, a refresh won't work; have to hit enter in the address bar to get the page. – Inshallah Aug 18 at 17:26
markdown doesn't like underscores I guess. I have changed the link to use the snurl redirector – Paul Dixon Aug 18 at 17:48
vote up 0 vote down

I don't believe it does. You can create your own user written functions if you really require it to be done that way. Otherwise I'd just look at doing it within your application

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.