我想知道是否可能在sqlite列中获取不同值的列表,而不对它们进行排序。
SELECT DISTINCT column FROM table;
防爆。
柱
Mathew Mathew John John John Numbers Numbers
结果
John Mathew Numbers
但我不希望被命令。喜欢马修,约翰,数字
谢谢。
你想要什么顺序?
原文链接:https://www.f2er.com/sqlite/197960.html如果要按照第一次出现的顺序获取值,您可以执行以下操作:
select distinct column from table order by min(rowid);