SQLSQL LabPostgreSQL practice
00:0029 / 45
W04AdvancedLAG · intervals

Time since previous deployment

For customer 3, return deployment_id, deployed_at, and since_previous, the interval since its prior deployment. The first row should be NULL. Sort chronologically.

Data available

Use this table

1 table
Table 1

deployments

Customer releases, including failures and rollbacks.

  • deployment_idintegerPK
  • customer_idintegerFK
  • engineer_idintegerFK
  • versiontext
  • statustext
  • deployed_attimestamptz
Query editor

PostgreSQL

Run query
Result stream

Output

Run your query to inspect its result.
Contextual coach

Ask about this attempt

Run or check a query first. The coach only comments on a real error or grader mismatch.

Field notes

Hints & explanation

Try to solve it cold. Two progressive hints are available.