-
增
insert into
格式
insert into 表名(字段名1,字段名2,....)values(值1,值2.....); -
改
update set
格式
update 表名 set 字段名=字段值,...where 條件 ; -
刪
delete from
格式
delete from 表名 where 條件
表備份
備份到臨時表
備份表結(jié)構(gòu)
create table 臨時表名 as select * from 源表名 where 1=2
備份表結(jié)構(gòu)+數(shù)據(jù)
create table 臨時表名 as select * from 源表名 where 1=1
備份成sql腳本
通過sqlyog導出/導入sql腳本
備份成csv文件
擴展
增
-
把數(shù)據(jù)從一張表備份到另一張表
格式1
insert into 目標表 select *from 數(shù)據(jù)源 where條件
兩張表的結(jié)構(gòu)必須完全相同
格式2
insert into 目標表 (字段名1,字段名2,...)select 字段1,字段2....from 數(shù)據(jù)源 where條件
不限制表結(jié)構(gòu)
建表
create table
建數(shù)據(jù)庫
create database
改 建表結(jié)構(gòu) alter
刪 - 清表
delete from 表名
只刪數(shù)據(jù),不清內(nèi)存
truncate table 表名
全部清空 - 刪表
drop table -
刪庫
drop database