เริ่มต้นใช้งานเริ่มต้นใช้งานได้ฟรี

Engaging vehicle owners with metrics

To better engage vehicle owners, the marketing team is currently using two tables to send a post-charge message comparing that user's session to their vehicle model's average. They'd like to streamline this process, so they've come to you. Time to show them what you're made of!

แบบฝึกหัดนี้เป็นส่วนหนึ่งของหลักสูตร

Window Functions in Snowflake

ดูคอร์ส

แบบฝึกหัดเชิงโต้ตอบแบบลงมือทำ

ลองทำแบบฝึกหัดนี้โดยเติมโค้ดตัวอย่างนี้ให้สมบูรณ์

SELECT
    user_id,
    vehicle_model,
    energy_consumed,
    charging_duration,
	
    -- Count the total number of charging sessions by vehicle_model
    ___(*) OVER(
        PARTITION BY ___
    ) AS total_number_of_charges
    
FROM ELECTRIC_VEHICLES.charging
ORDER BY vehicle_model;
แก้ไขและรันโค้ด