2
我有一個數據庫表,其中有一個主鍵id
和兩個字段installation_id
和stat_value
。我如何找到表中所有不同的值對
一個installation_id可以有多個stat_value,同樣適用於stat_value。我想查找所有記錄,即與stat_values關聯的所有installation_id。
我有一個數據庫表,其中有一個主鍵id
和兩個字段installation_id
和stat_value
。我如何找到表中所有不同的值對
一個installation_id可以有多個stat_value,同樣適用於stat_value。我想查找所有記錄,即與stat_values關聯的所有installation_id。
這可能是你所追求的:
SELECT DISTINCT installation_id, stat_value FROM your_table;