{keyword}' Union All Select Null# 〈TRUSTED〉

SELECT name, description FROM products WHERE category = '{KEYWORD}' UNION ALL SELECT NULL, NULL#'; How it works: : Closes the original data string [2].

: Acts as a placeholder to match the number of columns in the original query [1, 5]. {KEYWORD}' UNION ALL SELECT NULL#

In a real-world scenario, a developer might mistakenly include this in a database query like this: SELECT name, description FROM products WHERE category =

: Appends the results of a second query to the first [3, 4]. 5]. In a real-world scenario

: Comments out the rest of the original code so it doesn't cause an error [2].