2つのテーブルで最大値を取得し、4つの異なる列に表示する必要があります。摂氏| |ハムfecha_temp |2つのテーブルの最大値を取得するクエリ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
fecha_hum私はこのクエリを試みたが、そんなに
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