我有一個SQL命令其在欄目組至少1特定值的行:的Postgres獲得由另一列
select location,status,total from my_table
這回:
location - status - total
city a - active - 3
city a - pending - 2
city a - cancel - 4
city b - pending - 4
city b - cancel - 4
city c - active - 2
city c - cancel - 6
我怎麼能只返回與城市行至少有一次狀態激活且總數> = 1?
所以,我想回:
location - status - total
city a - active - 3
city a - pending - 2
city a - cancel - 4
city c - active - 2
city c - cancel - 6
正如你看到我不想要回B市的原因現在也沒有狀態活躍至少一次與總> = 1
'其中位置(從MY_TABLE選擇的位置在那裏?)' – jarlh
WHERE使用子查詢可以處理存在,或在 –
你的問題回答了它 – GurV