SQL - Table Constraints
Consider the table
Assuming there is exactly one row with
orders with columns order_id (PRIMARY KEY) and tracking_number with a UNIQUE constraint. What will this query return?SELECT tracking_number FROM orders WHERE tracking_number = 'ABC123';Assuming there is exactly one row with
tracking_number = 'ABC123'.