1. 程式人生 > >mysql數據備份

mysql數據備份

一個表 user red sele 字段 from 一個數 eat 從數據

制作備份到另一張表

select * into Persons_backup from Persons這種方式在mysql運行會報 Undeclared variable錯誤

// mysql並不支持,替換成

create table persons_backup(select *from persons)

// 從一個表裏復制字段到另一張表 abc字段必須相同

insert into persons_backup(a,b,c)select a,b,c from persons where id_p=6;

// 從數據庫裏拷貝另一個數據的表字段

insert into mvc.users(name,address) select name,address from ajax.userajax;

//把當前數據庫表備份到另一個數據庫裏

create table ajax.persons_(select *from persons);

mysql數據備份