我有两个MySQL语句(见下文),我想将它们组合在一起,所以如果它们都产生1,那么最终结果将是1.我不确定如何构造它并且希望寻求帮助。
select count(*)
from monitor
where name='job_starttime' and value < ( UNIX_TIMESTAMP( ) -600)
select count(*)
from monitor
where name='job_active' and value = 0
因此,例如,我希望当两个语句都为真时导致值为1,如果为1或者为无,则结果为0。