SQL - Security Basics
Given the prepared statement:
If @age = 30, what will the query return?
PREPARE stmt FROM 'SELECT name FROM users WHERE age > ?'; EXECUTE stmt USING @age;
If @age = 30, what will the query return?
