求select * into new_table from old_table的mysql语句
在sqlserver中有select * into new_table from old_table的语句,请问mysql中有么
——解决方案——————–
create table new_table
select * from old_table
求select * into new_table from old_table的mysql语句
在sqlserver中有select * into new_table from old_table的语句,请问mysql中有么
——解决方案——————–
create table new_table
select * from old_table