请选择 进入手机版 | 继续访问电脑版
 找回密码
 立即注册
分享 作业
gz_29yzl 2021-5-9 20:04
132 次阅读|0 个评论
分享 0509练习-dcs29-毛庆华
dcs_29mqh 2021-5-9 20:04
六、 数据库单表练习题 有这样一个表: 作业:完成时间 2021-5-9 1、 查询 1832 班的成绩信息 select * from score1 where class=1832; 2, 查询 1833 班,语文成绩大于 80 小于 90 的成绩信息 select * from score1 where class=1833 and Chi ...
177 次阅读|0 个评论
分享 5-9数据库作业_欧锦宏
gz_29oujinhong 2021-5-9 20:00
创建名字为 class 的表 Ceeate table class(id int(2),class int(2),name varchar(10),age int(2),math gloat(4,2),eng(4,2),yuwen(4,2)); 添加数据 Insert into clas s values(1,1832,"aasd",34,76.6,57.77,88.76),(2,1832,"asshold",28,88.86,87.55,98.88),(3,1832,"ppppppp",20,55.65,75.4, ...
199 次阅读|0 个评论
分享 2021-5-9作业
gz_29dengrg 2021-5-9 19:47
1. select * from student1 where class in(1832); 2. select * from student1 where class=1832 and chinese between 80 and 90 ; 3. select * from student1 where id limit 4,6; 4.   ...
199 次阅读|0 个评论
分享 5月9日2129班mysql作业_田海堂
gz_29tht 2021-5-9 19:45
查询 1832班的成绩信息 查询 1833班,语文成绩大于80小于90的成绩信息 3,查询学生表中5到10行的数据 4 显示 1832班英语成绩为9 8 ,数学成绩为 77的姓名与学号 5,查询出1832班成绩并且按语文成绩排序(降序)   ...
228 次阅读|0 个评论
分享 5-9作业
gz_29wangyuxia 2021-5-9 19:44
1、 查询 1832班的成绩信息 select yuwen,shuxue,yingyu,1832 from student; 2, 查询 1833班,语文成绩大于80小于90的成绩信息 select * from student where (class="1833" or class="1832")and yuwen80 and shuxue80; 3, 查询学生表中 5到10行的数据 sele ...
178 次阅读|0 个评论
分享 0509数据库mysql课堂作业
gz_29liangyunan 2021-5-9 19:36
0509 数据库 mysql 课堂作业 0509 数据库 mysql 课堂作业 1 、查询 1832 班的成绩信息 select * from grade where class=2129; 2 ,查询 1833 班,语文成绩大于 80 小于 90 的成绩信息 sele ...
260 次阅读|0 个评论
分享 数据库单表练习
gz_wangpeisi 2021-5-9 19:35
1、查询1832班的成绩信息 mysql select * from class where class=1832; 2,查询1833班,语文成绩大于80小于90的成绩信息 mysql select * from class where class=1833 and chinese80 and chinese90; 3,查询学生表中5到10行的数据 mysql select * from class where id limit 4,10; ...
155 次阅读|0 个评论
分享 广州多测试29班 2021-5-9课堂作业
gz_29zhengjun 2021-5-9 19:30
班级学生成绩表ab: 数学:math 英语:eng 语文:chine 班级:1832,1833 性别:1,2 biological :物理 chemical :化学 physical:生物 1、查询1832班的成绩信息 mysql select name,class,math,eng,chine from a ...
289 次阅读|0 个评论
分享 谭嘉政5.9作业
gz29tanjiazheng 2021-5-9 19:09
create table chengji(id int(10) primary key auto_increment,class int(10),name varchar(10),age int(3),chinese int(3),math int(3),english int(3)); alter table chengji rename score; insert into score values (1,1832,"linan", 18, 76,87,68), (2,18 ...
168 次阅读|0 个评论