第八天作业 :
继续 select
1)查找idoxu表,名称(c_name)包含 “i” 的数据
2)查找istester表,id 包含 “1” 的数据
3)查找istester表,id 包含 “1” 的数据,按id降序
4)查找istester表,id 包含 “1” 的数据 ,取id最大的三个
前七天作业参考答案:
1)查询istester表 id = 1的内容
select * from istester where id = 1;
#用的多的形式:
select i.* from istester i where i.id=1;
2)查询idoxu 表 grade=100 的内容
select * from idoxu where grade =100;
select * from idoxu where grade = 100;
#用的多的形式:
select i.* from idoxu where i.grade=100;
image.png
网友评论