1613. Find the Missing IDs
https://leetcode.com/problems/find-the-missing-ids
Description
Table: Customers
Write an SQL query to find the missing customer IDs. The missing IDs are ones that are not in the Customers
table but are in the range between 1
and the maximum customer_id
present in the table.
Notice that the maximum customer_id
will not exceed 100
.
Return the result table ordered by ids
in ascending order.
The query result format is in the following example.
ac
Previous1612. Check If Two Expression Trees are EquivalentNext1614. Maximum Nesting Depth of the Parentheses
Last updated