I have an empty template table called Table1. I want to copy this table multiple times so I can have Table2 Table3 Table4 and so on, including the fields.
I have tried:
SELECT *
INTO Table2
FROM Table1
but I keep getting this error:
ERROR 1327 (42000): Undeclared variable: Table2
Am I doing this wrong?