Mysql 常用基本sql语句(2)

发布时间:2021-06-07

10、修改表的字段名,把字段name改为username

alter table one change name username varchar(20);

11、修改表名

Alter table 旧表名 rename 新表名;

12、修改引擎

Alter table 表名 engine=innodb|myisam;

13、在one表中插入一条语句,字段名id、username、password Insert into one(id,username,password) values (1,’test’,’a’);

14、更新表one中id>1、id<3时的字段age、password

Update one set age=100,password=’12a’ where id>1 and id<3;

15、删除表one中id=5的语句

Delete from one where id=5 ;

16、查询表one,先按照istop字段来排序,按id降序排序

Select * from one order by istop,id desc;

17、查询表one中id在4和8之间的语句

Select * from one where id between 4 and 8;

18、查询表one中id=2,5,8,10的语句,用in方法

Select * from one where id in(2,5,8,10);

19、删除2,5,9,6

Delete from one where id in(2,5,9,6);

20、删除最后一条记录

Delete from one order by id desc limit 1;

Mysql 常用基本sql语句(2).doc 将本文的Word文档下载到电脑

精彩图片

热门精选

大家正在看

× 游客快捷下载通道(下载后可以自由复制和排版)

限时特价:7 元/份 原价:20元

支付方式:

开通VIP包月会员 特价:29元/月

注:下载文档有可能“只有目录或者内容不全”等情况,请下载之前注意辨别,如果您已付费且无法下载或内容有问题,请联系我们协助你处理。
微信:fanwen365 QQ:370150219