mysql select into的用法

 MySQL不支持Select Into語句直接備份表結構和數據,一些種方法能夠代替,以下:sql #MYSQL不支持: Select * Into new_table_name from old_table_name; 這是sql server中的用法 #替代方法: Create table new_table_name (Select * from old_table_name);
相關文章
相關標籤/搜索