79373097

Date: 2025-01-21 03:10:13
Score: 2
Natty:
Report link

with cte as (select hire_date - lag(hire_date) over (order by hire_date ) hiring_freeze, termination_date-lag(termination_date) over (order by termination_date ) as firing_freeze from uber_employees ) select max(hiring_freeze) max_hire, max(firing_freeze) max_fire from cte

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: user29271596