Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Is it possible to combine the CASE statement and the LIKE operator in a MySQL SELECT statement?

For Example, I am trying to query a database that stores data in a single column in either one of two formats (this is awful and hurts my head, but I cant change the data so it is what it is.). So sometimes the column numbers would have data like "6901xxxxxxxx" and sometimes it would have data like "91xxxxxxxxxxx".

What I would like to do is query the data like so -

SELECT
    CASE digits
      WHEN LIKE "6901%" THEN substr(digits,4)
      WHEN LIKE "91%" THEN substr(digits,2)
    END as "digits",
FROM raw

This obviously doesn't work but Im hoping its possible.

share|improve this question

4 Answers

up vote 29 down vote accepted

Using the second form of CASE should work:

SELECT
  CASE
    WHEN digits LIKE '6901%' THEN substr(digits,4)
    WHEN digits LIKE '91%' THEN substr(digits,2)
  END as digits
FROM raw

Furthermore, you have a stray comma at the end of your SELECT.

share|improve this answer
1  
+1: CASE column WHEN... format is only good for exact matches; have to use this format for partial matches. – OMG Ponies Aug 26 '10 at 21:48
1  
Ding ding ding, wrong form of case. Thanks a ton guys, my desk/forehead are grateful. – HurnsMobile Aug 26 '10 at 21:50
Thanks. The syntax is accurate – Cullen SUN Oct 26 '12 at 5:37

Try

SELECT
    CASE true
      WHEN digits LIKE "6901%" THEN substr(digits,4)
      WHEN digits LIKE "91%" THEN substr(digits,2)
    END as "digits",
FROM raw
share|improve this answer
+1: I tested, this works. MySQL ignores the "true"; I thought it would trigger a syntax error. Still, I wouldn't add "true" in there if it wasn't necessary. – OMG Ponies Aug 26 '10 at 21:52
+1 for working, not quite as well as the accpeted answer :) – HurnsMobile Aug 26 '10 at 21:54

Perhaps use LEFT()?

SELECT
    CASE 
      WHEN LEFT(digits, 4) = '6901' THEN substr(digits,4)
      WHEN LEFT(digits, 2) = '91' THEN substr(digits,2)
    END 
FROM raw

Should be more performant than the LIKE.

share|improve this answer
The LIKE in this example is only wildcarding the right side, so an index could be used but I don't believe that LEFT/INSTR could use an index. +1 for an alternative. – OMG Ponies Aug 26 '10 at 21:58

Assuming the number of digits is constant, you could use something like this:

SELECT IF(digits > 919999, MOD(digits, 100), MOD(digits, 10000) FROM raw

Add 0's to match your actual number of digits.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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