MySQL不支持Select Into语句直接备份表结构和数据,一些种方法可以代替,如下:
1 2 3 4 |
#MYSQL不支持: Select * Into new_table_name from old_table_name; 这是sql server中的用法 #替代方法: Create table new_table_name (Select * from old_table_name); |
from:https://blog.csdn.net/zwldx/article/details/82227533