求select * into new_table from old_table的mysql语句在sqlserver中有select*intonew_tablefromold_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
