MySQL课后作业——对表的CURD(增删查改)

一.在图书表(上篇博客中有编辑)中新增一条记录:Java核心技术、作者“Cay S. Horstman”,价格56.43,分类为“计算机技术”

insert into book values('Java核心技术','Cay S.Horstman',56.43,'计算机技术');

MySQL课后作业——对表的CURD(增删查改)_第1张图片

二.在以上创建的商品表中插入一条数据:名称为“学生书包”、价格18.91、库存101、描述为空

insert into product(name,price,storage) values('学生书包',18.91,101);

MySQL课后作业——对表的CURD(增删查改)_第2张图片

三.(拓展练习)查询用户user表中,满足以下条件的用户数据:

1. ID在1至200或300至500,且账号accout列不为空

2. 充值金额amount在1000以上。

select * from user where (id between 1 and 200 or id between 300 and 500) and accout is not null or amount>1000;

四.查询book图书表中,作者author列不为空,或者满足条件:价格price在50元以上且出版日期publish_date在2019年之后的图书信息

select * from book where author is not null or (price >50 and publish_date>'2019-01-01 00:00:00');

总结: 

 

.对表的CURD (增删查改)

MySQL课后作业——对表的CURD(增删查改)_第3张图片 

 MySQL课后作业——对表的CURD(增删查改)_第4张图片

 

***and优先级> or***

 

你可能感兴趣的:(mysql,数据库,database)