This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
#拷贝表结构
CREATE TABLE newadmin LIKE admin;
#拷贝表结构和数据(但约束与索引除外)
CREATE TABLE newadmin AS ( SELECT * FROM admin ) ;
#拷贝表结构+数据
INSERT INTO newadmin SELECT * FROM admin;
#跨数据库拷贝表,shop另一个数据库
CREATE TABLE newadmin LIKE shop.admin;