备注 | 修改日期 | 修改人 |
CREAT | 2021-04-07 13:52:09[当前版本] | 系统管理员 |
MySQL不支持Select Into语句直接备份表结构和数据,一些种方法可以代替,如下:
#MYSQL不支持: Select * Into new_table_name from old_table_name; 这是sql server中的用法 #替代方法: Create table new_table_name (Select * from old_table_name);