PWC SQL Interview Question 2024 | Time Series Data I Find the Average Temperature for Each Day

แชร์
ฝัง
  • เผยแพร่เมื่อ 13 ม.ค. 2025

ความคิดเห็น • 10

  • @Iamthebestthing
    @Iamthebestthing 5 หลายเดือนก่อน +1

    Solve more questions on join and analytical functions

    • @datasciencecorner
      @datasciencecorner  5 หลายเดือนก่อน

      @Manifestion_kannada sure. will do that. Thank you :)

  • @Harini-x7t
    @Harini-x7t 5 หลายเดือนก่อน +1

    select reading_time,round(avg(temperature),2) as average_temperature
    from temperature_readings
    group by reading_time

    • @datasciencecorner
      @datasciencecorner  5 หลายเดือนก่อน

      Great to see that you're practicing well Keep it up! Our best wishes to you :)

  • @Iamthebestthing
    @Iamthebestthing 5 หลายเดือนก่อน +1

    Date ( reading_ time ) is it work in Oracle SQL developer

    • @datasciencecorner
      @datasciencecorner  5 หลายเดือนก่อน

      @Manifestion_kannada will check and let you know

  • @theinsightminer08
    @theinsightminer08 2 หลายเดือนก่อน +1

    SELECT
    DATE(reading_time) AS reading_date,
    ROUND(AVG(temperature),2) AS avg_temperature
    FROM temperature_readings
    GROUP BY reading_date;

  • @madhusudhanreddyt2838
    @madhusudhanreddyt2838 2 หลายเดือนก่อน +1

    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);