NamePREPARE -- prepare a statement for execution
Synopsis
PREPARE name [ ( data_type [, ...] ) ] AS statement
Description PREPARE creates a prepared statement. A prepared statement is a server-side object that can be used to optimize performance. When the PREPARE statement is executed, the specified statement is parsed, analyzed, and rewritten. When an EXECUTE command is subsequently issued, the prepared statement is planned and executed. This division of labor avoids repetitive parse