MySQL从有更多匹配项的用户中进行选择

时间:2016-07-30 16:38:45

标签: php mysql

我想知道如何选择列数最多的用户来匹配登录用户的列。

1 个答案:

答案 0 :(得分:0)

通过总和匹配条件排序ex:

SELECT * FROM table where fColumn = 'name' and column2='value2' or colmun3='value3' 
ORDER BY (
(column2='value2') + (column3='value3')
) DESC