当前位置:网站首页>Modification of table fields by Oracle
Modification of table fields by Oracle
2022-04-23 13:40:00 【Wangcai 2】
Main operation :1. Add fields ;2. Delete field ;3. Modify fields ( Change the type of field , Modify the length of the field )
1. Add fields :
You can always succeed , The newly added field appears at the end of the table .
alter table student
add tel varchar2(11);
alter table student
add addr varchar2(11);
2. Delete field :
You can always succeed , Whether there is data or not , Can be deleted .
alter table student
drop column addr
3. Modify fields :
A. When there is no data in this field , Type of field , The length of the field can be modified .
alter table student
modify tel number(11);
alter table student
modify addr varchar(20);
B. Modification of default values , It will not affect the existing data , It will only affect the data inserted later .
alter table student
modify sex char(2) default ' Woman ';
C. When the field has data, the type of the field cannot be modified , But the length of the field can be modified ( The length can be increased , Smaller depends on the actual length of the data ).
alter table student
modify grade varchar(8);
版权声明
本文为[Wangcai 2]所创,转载请带上原文链接,感谢
https://yzsam.com/2022/04/202204230604301489.html
边栏推荐
- [official announcement] Changsha software talent training base was established!
- [point cloud series] learning representations and generative models for 3D point clouds
- 你和42W奖金池,就差一次“长沙银行杯”腾讯云启创新大赛!
- Launcher hides app icons that do not need to be displayed
- TERSUS笔记员工信息516-Mysql查询(2个字段的时间段唯一性判断)
- EMMC / SD learning notes
- @Excellent you! CSDN College Club President Recruitment!
- 5道刁钻的Activity生命周期面试题,学完去吊打面试官!
- LeetCode_ DFS_ Medium_ 695. Maximum area of the island
- Playwright contrôle l'ouverture de la navigation Google locale et télécharge des fichiers
猜你喜欢

SPI NAND flash summary

On the bug of JS regular test method

集简云 x 飞书深诺,助力企业运营部实现自动化办公
![[Journal Conference Series] IEEE series template download guide](/img/1b/a3cf2688778ec34354e77e28e32be8.png)
[Journal Conference Series] IEEE series template download guide
![[dynamic programming] 221 Largest Square](/img/31/3af4ba05764a683220b5292d3b8780.png)
[dynamic programming] 221 Largest Square

SAP UI5 应用开发教程之七十二 - SAP UI5 页面路由的动画效果设置

TIA博途中基於高速計數器觸發中斷OB40實現定點加工動作的具體方法示例

The interviewer dug a hole for me: how many concurrent TCP connections can a single server have?

X509 parsing

Ding ~ your scholarship has arrived! C certified enterprise scholarship list released
随机推荐
Part 3: docker installing MySQL container (custom port)
@优秀的你!CSDN高校俱乐部主席招募!
What does the SQL name mean
[dynamic programming] 221 Largest Square
Android clear app cache
交叉碳市场和 Web3 以实现再生变革
Uninstall MySQL database
Solution: you have 18 unapplied migration (s) Your project may not work properly until you apply
“湘见”技术沙龙 | 程序员&CSDN的进阶之路
Isparta is a tool that generates webp, GIF and apng from PNG and supports the transformation of webp, GIF and apng
UEFI learning 01-arm aarch64 compilation, armplatformpripeicore (SEC)
联想拯救者Y9000X 2020
[tensorflow] sharing mechanism
PyTorch 21. NN in pytorch Embedding module
面试官给我挖坑:URI中的 “//” 有什么用?
EMMC / SD learning notes
Summary of request and response and their ServletContext
Detailed explanation of ADB shell top command
Publish custom plug-ins to local server
SPI NAND flash summary