Files
lpmj6/11/18.sql
T
RobinNixon 53063593e3 Final
Final
2020-12-10 13:51:13 +00:00

11 lines
321 B
SQL

PREPARE statement FROM "INSERT INTO classics VALUES(?,?,?,?,?)";
SET @author = "Emily Brontë",
@title = "Wuthering Heights",
@category = "Classic Fiction",
@year = "1847",
@isbn = "9780553212587";
EXECUTE statement USING @author,@title,@category,@year,@isbn;
DEALLOCATE PREPARE statement;