我有这张table。我只想得到1和2我试过:
SELECT table_no from customer_order where status='true'
szqfcxe21#
你可以用 distinct 关键字:
distinct
SELECT DISTINCT table_no from customer_order where status='true'
mi7gmzs62#
要获取值列表并将它们限制为每个值中的一个值,请使用GROUPBY子句:
SELECT table_no from customer_order where status='true' GROUP BY `table_no`
2条答案
按热度按时间szqfcxe21#
你可以用
distinct
关键字:mi7gmzs62#
要获取值列表并将它们限制为每个值中的一个值,请使用GROUPBY子句: