mysql选择语法而不重新匹配其他值

p5fdfcr1  于 2021-06-20  发布在  Mysql
关注(0)|答案(2)|浏览(319)

我有这张table。

我只想得到1和2
我试过:

SELECT table_no
from customer_order
where status='true'
szqfcxe2

szqfcxe21#

你可以用 distinct 关键字:

SELECT DISTINCT table_no
from customer_order
where status='true'
mi7gmzs6

mi7gmzs62#

要获取值列表并将它们限制为每个值中的一个值,请使用GROUPBY子句:

SELECT table_no
from customer_order
where status='true'
GROUP BY `table_no`

相关问题