1.student学生表中,字段有姓名name,年龄age,要求查询姓张,并且年龄在18到25岁之间的学生
2.查询article文章表中,发表日期create_date在2019年1月1日上午10点30分至2019年11月10日下午4点2分的文章
3.查询article文章表中,文章标题title为空,或者满足发表日期create_date在2019年1月1日之后
4.查询book图书表中,作者author列不为空,或者满足条件:价格price在50元以上且出版日期publish_date在2019年之后的图书信息
5.查询用户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 and amount>1000;