当前位置:网站首页>MySQL第七次作业-更新数据
MySQL第七次作业-更新数据
2022-06-26 09:37:00 【m0_61961898】
1.更新教师表中所有记录,将津贴改为2000
update lingjinzhengteacher set
-> comm = 2000
-> ;
- 更新教师表中教师号在T5到T8之间的记录,将津贴改为1500
mysql> update lingjinzhengteacher set -> comm = 1500 -> where no between "t5" and "t8";
4更新课程表中课时数不在45,50中的记录,将课时数改为25
mysql> update lingjinzheng_course set
-> class_hours=25 where class_hours not in (45,50);
更新教师表中工资不等于3000并且津贴不为空的记录,将津贴改为1000
mysql> update lingjinzhengteacher set
-> comm = 1000 where sal != 3000 and comm is not null;
- 更新教师表中工资等于2000并且岗位津贴大于等于1000的记录,将津贴改为500
mysql> update lingjinzhengteacher set
-> comm = 500
-> where sal = 2000 and comm >= 1000;
- 更新课程表中带课程名称以字母“M”开头并且课程名称中有“L”字母的记录,将课时数改为78
mysql> update lingjinzheng_course set
-> class_hours =78
-> where name like "m%" and name like "%1%";
- 更新授课表中教室在Y栋2楼的记录,将课程号改为C8,教师号改为T10
mysql> update lingjinzheng_schoolteaching set
-> course_no = "c8", teacher_no = "t10" where class_num like "y2%";
边栏推荐
猜你喜欢
Little red book - Summary of internal sales spike project
cmake / set 命令
Solution to network request crash in retrofit2.8.1
Cloud native essay using Hana expression database service on Google kubernetes cluster
36 qtextedit control input multiline text
904. 水果成篮
MySQL第十三次作业-事务管理
Software testing - how to select the appropriate orthogonal table
Allocation de mémoire tas lors de la création d'objets
Allocation of heap memory when creating objects
随机推荐
Blog article index summary -- Software Engineering
druid数据源实现后台监控
Cloud native essay using Hana expression database service on Google kubernetes cluster
String类intern()方法和字符串常量池
From TF 1 X to TF 2.6 (update if you encounter it)
What are the symbolic and direct references of the JVM
Extracting public fragments from thymeleaf
DBSCAN
The basis of C language grammar -- function definition learning
Pytest configuration file
Differences between JVM, Dalvik and art
Global and Chinese market for baked potato chips 2022-2028: Research Report on technology, participants, trends, market size and share
Cmake / set command
MySQL项目8总结
Blog article index Summary - wechat games
定制拦截器
Tensorflow dynamically allocates video memory
Little red book - Summary of internal sales spike project
Druid data source for background monitoring
Automated testing -- on the coexistence of Unitest and pytest initialization