标签: php mysql
我想知道如何选择列数最多的用户来匹配登录用户的列。
答案 0 :(得分:0)
通过总和匹配条件排序ex:
SELECT * FROM table where fColumn = 'name' and column2='value2' or colmun3='value3' ORDER BY ( (column2='value2') + (column3='value3') ) DESC