无论字符串中的顺序如何,都在查询条件中查询各种字符

时间:2013-08-17 21:52:25

标签: mysql

我有以下查询:

SELECT 
        *
    FROM
        `Magic The Gathering`
    WHERE
        `set` =  'Magic 2013'
    ORDER BY
        (CASE
            WHEN `cost` LIKE '%B%' THEN 1
            WHEN `cost` LIKE '%R%' THEN 2
            WHEN `cost` LIKE '%G%' THEN 3
            WHEN `cost` LIKE '%W%' THEN 4
            WHEN `cost` LIKE '%U%' THEN 5
            WHEN `cost` LIKE '%B%U%' THEN 6
            ELSE 7
        END),
        FIELD (`rarity`, 'Mythic', 'Rare', 'Uncommon', 'Common', 'Land') ASC,
        (CASE
            WHEN `type` LIKE '%Planeswalker%' THEN 1
            WHEN `type` LIKE '%Creature%' THEN 2
            WHEN `type` LIKE '%Instant%' THEN 3
            WHEN `type` LIKE '%Sorcery%' THEN 4
            WHEN `type` LIKE '%Enchantment%' THEN 5
            WHEN `type` LIKE '%Artifact%' THEN 6
            WHEN `type` LIKE '%Land%' THEN 7
        END)
    LIMIT
        500

如果你看一下......

WHEN `cost` LIKE '%B%U%' THEN 6

我怎样才能支持

WHEN `cost` LIKE '%B%U%' THEN 6

WHEN `cost` LIKE '%U%B%' THEN 6

请注意,U现在位于B前面。甚至包括...... ......等等

WHEN `cost` LIKE '%B%U%G%R%' THEN 6

基本上,如果这些字符中的任何字符都在字符串中而不管顺序,它应该可以工作。我怎么能这样做?

1 个答案:

答案 0 :(得分:1)

使用不同的喜欢这样做:

when cost like '%b%' and cost like '%u%' then ...

您还可以使用正则表达式,尤其是在模式变得更复杂的情况下:

when cost regexp '.*[bu].*' then ...