in reply to Create another table

First, your CREATE TABLE syntax is not correct, you cannot specify values when creating a table. You need to specify the column names and types for the table to be created.

Second, you can't use bound parameters (e.g. ?) to insert actual SQL code into a query, only values. Bound parameters are escaped into pure strings, and won't be evaluated as statements.