SQL - Security Basics
Consider this code:
What will this query return?
PREPARE stmt FROM 'SELECT * FROM orders WHERE status = ?'; SET @status = 'shipped'; EXECUTE stmt USING @status;
What will this query return?
