修改表-修改字段,重命名版: alter table 表名change原名
新名 類型及約束; alter table students change birthday birth datetime not null;
修改表-修改字段,不重名版本: alter table 表名modify列名類型和約束 ; alter table students modifybirth date not null
全列插入:insert into 表名 values(...) insert into students values(0,"郭靖", 1,"內(nèi)蒙","2017-6");
部分插入:值的順序與給出的列順序?qū)?yīng): insert into students(name, birthday) values("黃蓉","2017-8");
修改: update 表名 set 列 1=值 1,列 2=值 2 ... where 條件 update students set gender=0,homwtown="古墓" where id = 5;
備份:mysqldump -uroot -p 數(shù)據(jù)庫名 》 python.sql, 恢復(fù):mysql -uroot -p 數(shù)據(jù)庫名< python.sql