0
我有一個查詢返回所有重複項。我希望能夠看到他們的主題是誰,以及每一行的主題。需要獲取所有重複項,再加上查看父項和子項
select pubproductid, primarytopic, topic, count(pubproductid)
from q
group by pubproductid,primarytopic,topic
having count (pubproductid) > 1;
Getting this.
column_3 column_4 primarytopic pubproductid topic
2 2 xu 201 do
Expecting this
column_3 column_4 primarytopic pubproductid topic
2 2 xu 201 do
2 2 xl 201 da
你能後產生這一結果的數據? – user2989408
數據在那裏。 – user1235905
您已發佈查詢的結果以及您期望的內容,但未發佈產生它的輸入數據。我們需要輸入,以便我們可以看到爲什麼產生輸出。 – user2989408