当前位置:网站首页>sql 中的alter操作总结
sql 中的alter操作总结
2022-06-26 18:07:00 【yanruo06280】
alter用法总结
1、增加列
alter table 表名 add column 列名 类型 ‘描述’
2、删除列
alter table 表名 drop column 要删除的列名
3、修改列类型、长度
ALTER TABLE 表名 CHANGE COLUMN 列名 新列名 新属性
或
alter table 表名 modify column 列名 属性(col-type);
4、重命名列
ALTER TABLE 表名字 CHANGE COLUMN 列名 新列名 属性
5、重命名表
ALTER TABLE 表名 RENAME TO 表新名
6、删除表中主键
Alter TABLE 表名 DROP primary key
7、添加主键
ALTER TABLE 表名 ADD CONSTRAINT 约束名 PRIMARY KEY (添加列)
8、添加索引
ALTER TABLE 表名 ADD index 索引名 (列名);
9、修改列的属性
ALTER TABLE 表名 MODIFY COLUMN 要修改属性的列名 新属性;
参照:
https://blog.csdn.net/qq_41820897/article/details/100179834
边栏推荐
- Dos et détails de la méthode d'attaque
- The difference between round and truncate in SQL (round or truncate)
- 你了解如何比较两个对象吗
- Number of solutions for knapsack problem
- 小程序设置按钮分享功能
- in和exsits、count(*)查询优化
- Niuke network: Design LRU cache structure design LFU cache structure
- Map和List<Map>转相应的对象
- Digital signature standard (DSS)
- [code Capriccio - dynamic planning] t583. Deleting two strings
猜你喜欢

行锁分析和死锁

Knapsack problem with dependency

Niuke network: Design LRU cache structure design LFU cache structure

MySQL的MVCC机制详解

接水面试题

Chinese (Simplified) language pack

Runtimeerror: CUDA error: out of memory own solution (it is estimated that it is not applicable to most people in special circumstances)

行锁与隔离级别案例分析

In and exceptions, count (*) query optimization

小程序设置按钮分享功能
随机推荐
How to add an application to the deviceidle whitelist?
输入n个整数,输出出现次数大于等于数组长度一半的数
[npoi] C copy sheet template across workbooks to export Excel
vutils.make_grid()与黑白图像有关的一个小体会
How sparksql returns a specific day of the week by date -dayofweek function
【QNX】命令
Digital signature standard (DSS)
接水面试题
Decision tree and random forest
JVM entry Door (1)
LeetCode——226. Flip binary tree (BFS)
14 MySQL tutorial insert insert data
In and exceptions, count (*) query optimization
解决pycharm里面每个字母占一格空格的问题
Tencent qianzhiming: Exploration and application of pre training methods in information flow business
transforms.RandomCrop()的输入只能是PIL image 不能是tensor
[unity] use C in unity to execute external files, such as Exe or bat
Detailed explanation of MySQL mvcc mechanism
Hello, is it safe to open an online stock account and buy stocks now?
MySQL的MVCC机制详解