根据两列从mysql中选择多个行值

时间:2014-01-03 09:33:18

标签: php mysql

enter image description here

在此表中,我需要选择的值与29个按顺序匹配并且不重复。

2 个答案:

答案 0 :(得分:1)

SELECT * FROM table WHERE 1P_id = '29' ORDER BY count ASC

是这样的吗?

答案 1 :(得分:0)

  

$ query =“SELECT DISTINCT * FROM table WHERE 1P_id = '29'ORDER BY count ASC”;    选择id为29的第一条记录。请记住,如果你写'count'而不是count希望有用,那么顺序将不起作用