SQL - Advanced Query Patterns
Which of the following SQL snippets correctly uses
LEAD() to find gaps in a sequence column named num in table numbers?LEAD() to find gaps in a sequence column named num in table numbers?LEAD(column) OVER (ORDER BY column) to define the order for the window function.LEAD(num) OVER (ORDER BY num), which is the correct form to get the next number in order.15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions