直接在MySQL中使用select into,将得到如下报错:
[SQL] select * into th_m2 from th_member
[Err] 1327 - Undeclared variable: th_m2
那么,在MySQL中应该怎样实现select into语句的效果呢?我们可以先创建一表,但不定义表结构,而使用select 语句来定义表结构。语法如下:Create table 新表名 (Select * from 原表名);
举例如下:
[SQL] Create table th_m2 (Select * from th_member);