SELECT
e.sensorId,
s.type,
e.mode
FROM EVENTS
e
INNER JOIN sensor s ON
s.sensorId = e.sensorId
WHERE
s.TYPE = 'door/window' AND e.readDate = '2018-05-15' IN(
SELECT
e.mode
FROM EVENTS e
HAVING
e.mode = 'inactive'
);
上面的代码在mysql中没有任何帮助,我真的可以使用一些帮助。我有两个带有值,事件和传感器的表,巫婆需要加入。我的查询需要找出在2018年5月15日再次启用的``门/窗''处于未激活状态的时间。