Querying, Wildcards, and Security.
(a) * (Asterisk)
(b) % (Percentage) - Note: J277 uses %.
Thor, Hulk, Odin
WHERE CharName LIKE "%i"
SELECT Title, Author FROM Books WHERE YearPublished < 2000 AND Available = True AND Author = "J.K. Rowling"
(a) SELECT Name FROM Students WHERE Score >= 80
(b) Faster searching/filtering, concurrent access, data integrity/security.
(a) SQL Injection
(b) Input Sanitisation / Parameterised Queries