I'm trying to select some integer values in MySQL. Several of the values are zero, which I want to grab as an empty string, and grab the integer values when available.

So I have something like this:

SELECT CASE field WHEN 0 THEN '' ELSE field, [repeat for other fields]

Is there any way to shorten this in the SQL query? Does MySQL support the ternary operator?

link|improve this question

feedback

1 Answer

up vote 2 down vote accepted

There's IF

select IF(field1=0,'',field1), ...

And if your fields are NULL, there's IFNULL

select IFNULL(field1,'')
link|improve this answer
It also seems to be faster than CASE/WHEN. – Serkan Yersen Aug 25 '10 at 8:04
@SerkanYersen Source? – tombom Apr 29 at 21:56
feedback

Your Answer

 
or
required, but never shown

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