0
我需要在四分型動物在兩個表中的最大值和顯示。 Celsius |嗯| fecha_temp | fecha_hum查詢兩個表中獲得最大的價值MySQL的
Table: temperaturas
Columns:
id_temp int(11) AI PK
celsius_temp decimal(10,0)
fah_temp decimal(10,0)
fecha_temp datetime
Table: humedad
Columns:
id_hum int(11) AI PK
hum_hum float
fecha_hum datetime
我嘗試這個查詢,但不工作
select t.celsius_temp as celsius, h.hum_hum, t.fecha_temp, h.fecha_hum from
temperaturas t
inner join humedad h on h.hum_hum <=(select max(h.hum_hum) from humedad h)
where t.celsius_temp<=(select max(t.celsius_temp) from temperaturas t) and
t.fecha_temp between '2017-12-01' and '2017-12-05'
order by t.celsius_temp, h.hum_hum desc limit 1;
非常感謝
最大值? – Imran