In article <[EMAIL PROTECTED]>,
Johan Höök <[EMAIL PROTECTED]> writes:

> Hi,
> I guess your "CASE" statement should look something like:

> CASE WHEN Location=1 THEN 'Downstairs Cat Room'
>       WHEN Location=2 THEN 'Kitten Room'
>       WHEN Location=3 THEN 'Quarantine'
>       ELSE 'Unknown' END AS Location

That's correct, but it can be written shorter and clearer:

CASE Lccation
WHEN 1 THEN 'Downstairs Cat Room'
WHEN 2 THEN 'Kitten Room'
WHEN 3 THEN 'Quarantine'
ELSE 'Unknown' END AS Location


--
MySQL General Mailing List
For list archives: http://lists.mysql.com/mysql
To unsubscribe:    http://lists.mysql.com/[EMAIL PROTECTED]

Reply via email to