PREPARE
Description
PREPARE prepares a statement dynamically specified as a string for execution. This is different from the direct SQL statementPREPARE, which can also be used in embedded programs. TheEXECUTE command is used to execute either kind of prepared statement.
Parameters
- prepared_name
An identifier for the prepared query.
- string
A literal C string or a host variable containing a preparable statement, one of the SELECT, INSERT, UPDATE, or DELETE.