从同一张表中,什么是进行两个不同选择并根据结果生成布尔值的好方法。
可测试的
pKey | prodStatus
-----------------
1 | 0
2 | 0
我正在尝试这样做
select count(pKey) from testable where pKey = 1 and prodStatus = 0
along with
select count(pKey) from testable where pKey = 2 and prodStatus = 0
If both results where 1 then `true` else `false`
是的,我使用 php 和大量代码来执行此操作,因为我不知道它是如何纯粹在 sql 中完成的,而这样的事情超出了我的范围。我怎样才能在 sql 本身中做这样的事情?