-
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
-
这是一个小应用程序,闪电中的城市!
这是一个小应用程序,闪电中的城市!-This is a small application, the city lightning!
- 2022-06-20 00:15:08下载
- 积分:1
-
struts2.0 的配置文件,提供的为oa项目中的普通配置,供初学struts2.0的朋友参考用...
struts2.0 的配置文件,提供的为oa项目中的普通配置,供初学struts2.0的朋友参考用-struts2.0 configuration file, providing a project for the oa common configuration for the beginner struts2.0 friend of reference
- 2022-03-24 11:58:58下载
- 积分:1
-
JScript语言参考。
JScript语言参考。-JScript Language Reference.
- 2022-03-22 10:52:10下载
- 积分:1
-
另一个struts的小例子,入门最好!
另一个struts的小例子,入门最好!-small example, the entry best!
- 2022-02-01 15:29:21下载
- 积分:1
-
类别
oracle数据库连接类-category
- 2022-07-25 05:45:21下载
- 积分:1
-
软件开发活动为例,用鼠标器
eventos para el desarrollo de software con awt ejemplo con el raton
- 2022-03-03 15:21:00下载
- 积分:1
-
一个关于JAVA绘制仿真立体饼图的程序源码
一个关于JAVA绘制仿真立体饼图的程序源码-JAVA Drawing on a three-dimensional simulation of the pie procedures FOSS
- 2022-10-02 10:25:04下载
- 积分:1
-
Java 计算器 就像那个windows 自带的计算器...
Java 计算器 就像那个windows 自带的计算器... -Java calculators just as the windows, bringing their calculators ...
- 2022-03-13 05:22:50下载
- 积分:1
-
这是个自己用netbeans写的java记事本程序,能够实现记事本的基本功能。可以用netbeans打开,看到所有源码,并能运行。...
这是个自己用netbeans写的java记事本程序,能够实现记事本的基本功能。可以用netbeans打开,看到所有源码,并能运行。-This is their java with netbeans notebook written procedures, to achieve the basic functions of Notepad. Can use netbeans open-source to see all and will be able to run.
- 2022-01-26 08:22:27下载
- 积分:1