When using MySQL SELECT can you change the value of a returned field based on other fields?

For example, if I have this select:

SELECT city,state,country FROM table

Now if city is empty AND state is empty, I want the value of country to returned empty as well (whether country actually has a value or not).

Example table:

id | city | state | country
-----------------------------
1  | Here | There | MyCountry
2  |      |       | YourCountry

So with the above table, I want the results for id=1 to return Here,There,MyCountry but the results for id=2 should be empty,empty,empty

Thanks

EDIT: To clarify, a WHERE clause will not work because I need the row returned even if city and state are empty. A better example might have been SELECT id,city,state,country FROM my_table

link|improve this question

To clarify - do you definitely want a row returned if there is no city or state data available? – middaparka Jan 15 '11 at 19:31
yes i do need the row returned even if there is no city or state data – jsherk Jan 16 '11 at 0:23
feedback

4 Answers

up vote 2 down vote accepted

Update(misprints corrected):

SELECT city,state,
CASE 
 WHEN (city IS NULL OR city='') AND (state IS NULL or state='') THEN ''
 ELSE country
END as country_1
 FROM `table`

You can also use IF instead of CASE:
IF ((city IS NULL OR city='') AND (state IS NULL or state=''),'',country) as country_1

link|improve this answer
That's excellent... thank you! It's easy once you know what you are looking for! It's under Control Flow Functions here (from mysql v5 manual): dev.mysql.com/doc/refman/5.0/en/control-flow-functions.html This is what I actually ended up doing: SELECT city,state,if(city='' AND state='','',country) as country FROM table – jsherk Jan 16 '11 at 0:24
feedback

The answer is yes; you're looking for what's called control flow functions.

Take a look at http://dev.mysql.com/doc/refman/5.0/en/control-flow-functions.html

link|improve this answer
Thanks... I found this prior to seeing your post, but definitely a good link to have! – jsherk Jan 16 '11 at 0:30
feedback

a1ex07 is right, but you need to fix a few query errors in his SELECT stmt.

first, there is a missing comma after "state" and second, if your table were really called "table" you have to enclose in backticks because it is a reserved MySQL keyword.

SELECT city,state, 
CASE 
 WHEN (city IS NULL OR city='') AND (state IS NULL or state='') THEN ''
 ELSE country
END as country_1
 FROM `table`` 

(exlude second backtick, stackoverflow uses those for syntax highlighting if single.)

link|improve this answer
+1. Thanks for correcting. – a1ex07 Jan 15 '11 at 19:04
Thanks for noticing correctons. No, my table name is not really table, I just used that for an example, but its a good reminder that it would need to be in backticks! – jsherk Jan 16 '11 at 0:28
feedback

Why don't you just use a WHERE clause?

For example:

SELECT city, state, country FROM <table> WHERE (city <> "" OR state <> "");

N.B.: You'll need to replace the '<> ""' above with 'IS NOT NULL' if these are actually nulled rather than simply empty.

link|improve this answer
-1. That's not what the OP asked for; your query would return one row, his would return two. – Adam Maras Jan 15 '11 at 18:51
@Adam Maras - So you're downvoting because I suggested an alternative (and perhaps more appropriate) answer than what the OP specifically asked for? – middaparka Jan 15 '11 at 18:52
You can't call it more appropriate when the OP specifically asked for the query to return a certain way. OP was very clear about the intended functionality. – Adam Maras Jan 15 '11 at 19:01
@middaparka: I think you need to correct your N.B. section: city <> NULL is not the right way to check if the value is null (actually, it's always false[or null to be precise]) – a1ex07 Jan 15 '11 at 19:02
@Adam Maras If you look at it that way, then the OP specifically used city,state,country in his SELECT clause - what's he going to do with three empty fields and no ID in the returned data? – middaparka Jan 15 '11 at 19:04
show 4 more comments
feedback

Your Answer

 
or
required, but never shown

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