Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如果我有一个包含一列的表,Hello并且我有多个包含数据“世界”的行和多个包含数据的行Dave(还有其他列),我想在列中选择所有不同类型的数据Hello。
Hello
Dave
所以基本上我会寻找一个有两个结果的回报,一个是World,另一个是Dave。
World
另一种选择是计算列中有多少不同的数据片段(在这种情况下为 2)并将其作为 rownum 进行搜索并对结果进行排序(尽管我假设这是一个非常相似的搜索。)
谢谢
如果您不想在结果中重复 - 添加distinct:
distinct
select distinct hello from yourTable
如果你想计算不同的值:
select hello, count(*) from yourTable group by hello