Using the query:
SELECT Code FROM country WHERE Name = ‘united states’
Which statement executed in the mysql client would create a prepared statement?
A.
PREPARE STATEMENT countrycode FROM ‘SELECT code FROM counyry WHERE
Name =?.;
B.
PREPARE countrycode As ‘SELECT code FROM country WHERE Name =?.;
C.
PREPARE countrycode FROM ‘SELECT code FROM country WHERE Name =?.;
D.
PREPARE STATEMENT countrycode As ‘SELECT code FROM country WHERE Name=?.;
Explanation:
Reference:
http://www.timlin.net/csm/cis363/mysql18.html
C.
C
C
http://dev.mysql.com/doc/refman/5.7/en/prepare.html
C