我有这样的数据库结构>
ID | Party_Code | Trade_Qty | Market_Rate
-------------------------------------------
1 8070 5 10.50
2 8745 15 80.35
3 8070 6 45.60
这只是示例数据。实际上这个表包含 40000 行。
从这个示例中,我们可以看到Party_Code
列可以有重复的值。
我正在尝试查找派对代码count
。distinct
为此,我尝试了以下两个失败的查询:
select count(distinct(Party_Code)) from tradeFile
和
select distinct(count(Party_Code)) from tradeFile
这两个查询都失败了。
我想知道我在哪里犯错?
编写此类查询的方法是什么?