ขนาดวิดีโอ: 1280 X 720853 X 480640 X 360
แสดงแผงควบคุมโปรแกรมเล่น
เล่นอัตโนมัติ
เล่นใหม่
Solve more questions on join and analytical functions
@Manifestion_kannada sure. will do that. Thank you :)
select reading_time,round(avg(temperature),2) as average_temperaturefrom temperature_readingsgroup by reading_time
Great to see that you're practicing well Keep it up! Our best wishes to you :)
Date ( reading_ time ) is it work in Oracle SQL developer
@Manifestion_kannada will check and let you know
SELECT DATE(reading_time) AS reading_date, ROUND(AVG(temperature),2) AS avg_temperatureFROM temperature_readingsGROUP BY reading_date;
Great :)
IN SQL SERVER (SSMS)select CAST(reading_time as date) as reading_date, CAST(AVG(temperature) as decimal(10, 2)) as avg_temperature from temperature_readingsgroup by CAST(reading_time as date);
Keep rocking :)
Solve more questions on join and analytical functions
@Manifestion_kannada sure. will do that. Thank you :)
select reading_time,round(avg(temperature),2) as average_temperature
from temperature_readings
group by reading_time
Great to see that you're practicing well Keep it up! Our best wishes to you :)
Date ( reading_ time ) is it work in Oracle SQL developer
@Manifestion_kannada will check and let you know
SELECT
DATE(reading_time) AS reading_date,
ROUND(AVG(temperature),2) AS avg_temperature
FROM temperature_readings
GROUP BY reading_date;
Great :)
IN SQL SERVER (SSMS)
select
CAST(reading_time as date) as reading_date,
CAST(AVG(temperature) as decimal(10, 2)) as avg_temperature
from temperature_readings
group by
CAST(reading_time as date);
Keep rocking :)