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.
我需要执行一个命令来显示表“Ismatuota tarša”列 Dalelės_kiekis 比表“Taršos norma”列 Ribinė_valandos 的位置更多。有人知道怎么做吗?就像我有很多污染措施一样,Dalelės kiekis 是任何污染的量,而 Ribinė valandos 是一个标准吗?请帮忙。
尝试这个:
SELECT * FROM "Ismatuota tarša" GROUP BY Dalelės_kiekis HAVING count(Dalelės_kiekis) > (SELECT count(Ribinė_valandos) from "Taršos norma")