MySQL data cut command

as the title: does MySQL have data cutting commands? Move data from Table A to Table B

Apr.05,2021

Yes, but you need to create a table structure first, then export the data with select.. into outfile included in Mysql, and then import it into B with load data


create table B as select * from A;
dropt table A
.
Menu