mysql中整数的匹配函数

时间:2016-07-29 10:30:26

标签: mysql sql indexing match rank

我有一个表结构

 ID   Col_1   col_2  col_3  col_4  max
    1    34     23     45     32   45
    2    20     19     67     18   67 
    3    40     10     76     86   86

我想得到这样的东西,rank列是从查找“col_1”,“col_2”,“col_3”,“col_4”等列的“max”列值得出的。它应该返回索引或列号,从col_1开始为1,col_2为2,依此类推

ID   Col_1   col_2  col_3  col_4  max  rank
    1    34     23     45     32   45    3
    2    20     19     67     18   67    3
    3    40     10     76     86   86    4

这是我尝试但无法获得所需输出的内容。 任何帮助将不胜感激。

 SELECT ID,Col_1,col_2,col_3,col_4,max, match(max) AGAINST(col_1,col_2,col_3,col_4) from demo;

1 个答案:

答案 0 :(得分:2)

这是一种方法,相当强力:

select d.*,
       (case greatest(col_1, col_2, col_3, col_4, col_5)
            when col_1 then 1
            when col_2 then 2
            when col_3 then 3
            when col_4 then 4
            when col_5 then 5
        end) as max_index
from demo d;

作为注释:需要进行此类操作表明存在有缺陷的数据模型。列值应该存储在每行具有一个这样的值的表中。

我还应该注意,您可以使用field()

执行此操作
select d.*,
       field(greatest(col_1, col_2, col_3, col_4, col_5), 
             col_1, col_2, col_3, col_4, col_5)
from demo d;

这在计算上大致相同,但它的长度肯定要短得多。