-
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
-
一个J2ME的横版过关游戏源码,内含素材图
一个J2ME的横版过关游戏源码,内含素材图-The horizontal version of a J2ME game source code clearance
- 2022-06-11 19:06:31下载
- 积分:1
-
java
开发资料,关于spring、strus2方面的内容能够
java
开发资料,关于spring、strus2方面的内容能够
- 2022-11-10 20:20:04下载
- 积分:1
-
boy的java 程序,用与appletviewer显示
boy的java 程序,用与appletviewer显示-boy of java program, and show appletviewer
- 2022-12-13 03:10:04下载
- 积分:1
-
采用jsp编写网上书店实例
采用jsp编写网上书店实例-jsp prepared using examples of online bookstores
- 2022-06-17 20:58:22下载
- 积分:1
-
jfreechart安装程序和使用说明
jfreechart安装程序和使用说明-jfreechart installation procedures and use
- 2022-06-02 23:33:15下载
- 积分:1
-
cataloggui类实例化的Swing组件,将组件在..
Class CatalogGUI instantiates the Swing components, arranges the components in a window, and handles the events generated by the list. In this assignment, you will implement the method getDataFieldsPanel that returns a JPanel displaying the product details. An incomplete implementation of CatalogGUI is provided in the student archive.
- 2022-07-10 17:45:39下载
- 积分:1
-
JPEG头读者(原)
JPEG Head Reader(proto)
- 2022-03-03 05:16:22下载
- 积分:1
-
beginning_spring_2_from_novice_to_professional
Beginning_Spring_2_From_Novice_to_Professional-3877.it is useful for computer student and interested in computer
- 2022-04-20 20:07:03下载
- 积分:1
-
一个不错的考试系通,是我的毕业设计作业,采用java语言
一个不错的考试系通,是我的毕业设计作业,采用java语言-a good test-Link, I graduated from the design work, using java language
- 2022-01-26 17:00:51下载
- 积分:1