Parameterized SQL statement: Difference between revisions

Line 1,043:
{{works with|Db2 LUW}}
The following example is not Parametrized SQL, but it prevents SQL injections, and the SQL performs very well, because the execution plan is precompiled.
<lang sql pl>
CREATE TABLE PLAYERS (
NAME VARCHAR(32),
Anonymous user