SQL - Advanced Query Patterns
Given the table
numbers with column num containing values (1, 2, 4, 5, 7), what will the following query return?SELECT num, LEAD(num) OVER (ORDER BY num) AS next_num FROM numbers;
