当前位置:网站首页>Mysql database - basic operation of database and table (II)
Mysql database - basic operation of database and table (II)
2022-04-23 19:42:00 【X heart】
For reference only :
The first 1 Turn off : insert data
USE Company;
# Please add the implementation code here
########## Begin ##########
########## bundle insert the value ##########
insert into tb_emp(Id,Name,DeptId,Salary)
values(1,'Nancy',301,2300)
,(2,'Tod',303,5600)
,(3,'Carly',301,3200);
########## End ##########
SELECT * FROM tb_emp;
The first 2 Turn off : Update data
USE Company;
# Please add the implementation code here
########## Begin ##########
########## update the value ##########
update tb_emp
set Name="Nancy",DeptId=301,Salary =2300
where Id=1;
update tb_emp
set Name="Tracy",DeptId=302,Salary =4300
where Id=3;
########## End ##########
SELECT * FROM tb_emp;
The first 3 Turn off : Delete data
USE Company;
# Please add the implementation code here
########## Begin ##########
########## delete the value ##########
delete FROM tb_emp where Salary>3000;
########## End ##########
SELECT * FROM tb_emp;
版权声明
本文为[X heart]所创,转载请带上原文链接,感谢
https://yzsam.com/2022/04/202204231927030977.html
边栏推荐
- antd dropdown + modal + textarea导致的textarea光标不可被键盘控制问题
- @Mapperscan and @ mapper
- 如何在BNB链上创建BEP-20通证
- MFCC: Mel频率倒谱系数计算感知频率和实际频率转换
- The textarea cursor cannot be controlled by the keyboard due to antd dropdown + modal + textarea
- How to select the third-party package of golang
- No, some people can't do the National Day avatar applet (you can open the traffic master and earn pocket money)
- How to uninstall easyton
- filebeat、logstash配置安装
- MFC获取本机IP(网络通讯时用得多)
猜你喜欢
MySQL syntax collation (2)
优先使用组合而不使用继承
【文本分类案例】(4) RNN、LSTM 电影评价倾向分类,附TensorFlow完整代码
如何在BNB链上创建BEP-20通证
RuntimeError: Providing a bool or integral fill value without setting the optional `dtype` or `out`
Project training of Software College of Shandong University - Innovation Training - network security shooting range experimental platform (6)
Project training of Software College of Shandong University - Innovation Training - network security shooting range experimental platform (V)
Project training of Software College of Shandong University - Innovation Training - network security shooting range experimental platform (VII)
如何在BNB鏈上創建BEP-20通證
Openharmony open source developer growth plan, looking for new open source forces that change the world!
随机推荐
MFCC: Mel频率倒谱系数计算感知频率和实际频率转换
Speculation on the way to realize the smooth drag preview of video editing software
[report] Microsoft: application of deep learning methods in speech enhancement
MySQL syntax collation
深度分析数据恢复原理——那些数据可以恢复那些不可以数据恢复软件
Use test of FFT and IFFT library functions of TI DSP
视频理解-Video Understanding
Reflection on the performance of some OpenGL operations in the past
@Analysis of conditional on Web Application
仓库管理数据库系统设计
The difference between underline and dot of golang import package
Prefer composition to inheritance
The textarea cursor cannot be controlled by the keyboard due to antd dropdown + modal + textarea
Go recursively loops through folders
How to uninstall easyton
MySQL syntax collation (3)
Hot reload debugging
C学习完结
Easy mock local deployment (you need to experience three times in a crowded time. Li Zao will do the same as me. Love is like a festival mock)
Devops integration - environment variables and building tools of Jenkins service