标签: android database sqlite android-sqlite
我想要下面的内容
我的数据库包含一个名为Name的列,其中包含以下值
Name
Name a a b b a c b d
我想要检索下面的内容
Result a b c d
我怎样才能做到这一点?
答案 0 :(得分:2)
Distinct是你的朋友
Distinct
SELECT DISTINCT NAME FROM MYTABLE
http://www.sqlite.org/lang_select.html