SQL - Table Constraints
Given the table
OrderDetails with composite primary key (order_id, product_id), what will this query return?SELECT * FROM OrderDetails WHERE order_id = 101;
