-
alter table tbl_name add col_name type
例如,给表增加一列weight
mysql>alter table...
alter table tbl_name add col_name type
例如,给表增加一列weight
mysql>alter table pet add weight int
删除列
alter table tbl_name drop col_name
例如,删除列weight:
mysql>alter table pet drop weight
改变列
alter table tbl_name modify col_name type
例如,改变weight的类型:
mysql> alter table pet modify weight samllint
另一种方法是:
alter table tbl_name change old_col_name col_name type
例如:
mysql> alter table pet change weight weight samllint
给列更名
mysql>alter table pet change weight wei
给表更名
alter table tbl_name rename new_tbl
例如,把pet表更名为animal
mysql>alter table pet rename animal
-alter table tbl_name add col_name type for example, to form an increase in weight mysql> alter table pet add weight int Remove Columns alter table tbl_name drop col_name For example, the deletion of column weight: mysql> alter table pet drop weight change out alter table tbl_name modify col_name type for example, the type of weight change: mysql> alter table pet modify w
- 2022-02-11 13:09:52下载
- 积分:1
-
java的数字拼图游戏
JAVA的数字拼图游戏-JAVA figures pieces of the jigsaw
- 2022-10-02 00:35:03下载
- 积分:1
-
java编写的一个游戏,很有意思的
java编写的一个游戏,很有意思的-prepared in a game very interesting
- 2022-12-27 03:05:03下载
- 积分:1
-
ruby solve Sudoku problems, this procedure is very short, designed to be relativ...
ruby解决数独问题,这个程序很短,设计得比较精妙,其中有详细解释-ruby solve Sudoku problems, this procedure is very short, designed to be relatively sophisticated, including a detailed explanation
- 2023-02-07 05:15:03下载
- 积分:1
-
短信网关SMGP协议JAVA语言API开发包源代码
短信网关SMGP协议JAVA语言API开发包源代码-SMGP protocol message gateway JAVA language source code API development kit
- 2022-03-05 12:58:25下载
- 积分:1
-
Jsp write a test system can also test your knowledge of the jsp
一个jsp写的考试系统,还可以测试你的jsp知识 -Jsp write a test system can also test your knowledge of the jsp
- 2023-01-10 02:55:04下载
- 积分:1
-
5 under ajax programming model of the design has a great help
ajax下的5中编程模式
对设计方面有很大的帮助-5 under ajax programming model of the design has a great help
- 2022-07-22 17:01:19下载
- 积分:1
-
Airline Reservation code & is very nice check it
Airline Reservation code & is very nice check it
- 2022-03-07 13:36:05下载
- 积分:1
-
java和flash接口编程,可以读flash文件的jar文件
java和flash接口编程,可以读flash文件的jar文件-java and flash programming interface, can be read flash paper jar files
- 2022-04-11 09:35:57下载
- 积分:1
-
一个挺漂亮的用java编的时钟,可以改变颜色,并且显示时间与系统时间一致。...
一个挺漂亮的用java编的时钟,可以改变颜色,并且显示时间与系统时间一致。-A very beautiful clock made with java, you can change the color, and show consistent time and system time.
- 2022-04-10 02:55:05下载
- 积分:1