您的位置:首页技术开发SQL 学院 → MySQL数据库在指定位置增加字段

MySQL数据库在指定位置增加字段

时间:2010/2/3 17:34:00来源:本站整理作者:我要评论(0)

MySQL数据库在指定位置增加字段:

本身属于MySQL的基本语法,这里给出一个例子。

mysql> -- 测试数据库在指定位置增加字段   
mysql> drop table if exists t;   
Query OK, 0 rows affected (0.06 sec)   
mysql> create table t(age int,address varchar(50));   
Query OK, 0 rows affected (0.06 sec)   
mysql> desc t;   
+---------+-------------+------+-----+---------+-------+   
| Field   | Type        | Null | Key | Default | Extra |   
+---------+-------------+------+-----+---------+-------+   
| age     | int(11)     | YES  |     | NULL    |       |   
| address | varchar(50) | YES  |     | NULL    |       |   
+---------+-------------+------+-----+---------+-------+   
2 rows in set (0.02 sec)   
mysql> alter table t add column name varchar(20) after age;   
Query OK, 0 rows affected (0.16 sec)   
Records: 0  Duplicates: 0  Warnings: 0  
mysql> desc t;   
+---------+-------------+------+-----+---------+-------+   
| Field   | Type        | Null | Key | Default | Extra |   
+---------+-------------+------+-----+---------+-------+   
| age     | int(11)     | YES  |     | NULL    |       |   
| name    | varchar(20) | YES  |     | NULL    |       |   
| address | varchar(50) | YES  |     | NULL    |       |   
+---------+-------------+------+-----+---------+-------+   
3 rows in set (0.00 sec)   
mysql> alter table t add column id int FIRST;   
Query OK, 0 rows affected (0.13 sec)   
Records: 0  Duplicates: 0  Warnings: 0  
mysql> desc t;   
+---------+-------------+------+-----+---------+-------+   
| Field   | Type        | Null | Key | Default | Extra |   
+---------+-------------+------+-----+---------+-------+   
| id      | int(11)     | YES  |     | NULL    |       |   
| age     | int(11)     | YES  |     | NULL    |       |   
| name    | varchar(20) | YES  |     | NULL    |       |   
| address | varchar(50) | YES  |     | NULL    |       |   
+---------+-------------+------+-----+---------+-------+   
4 rows in set (0.00 sec)   
mysql>  
 

相关的语法描述为
ALTER [ONLINE | OFFLINE] [IGNORE] TABLE tbl_name    alter_specification [, alter_specification] ...alter_specification:    table_option ...  

| ADD [COLUMN] col_name column_definition        [FIRST | AFTER col_name ]

相关视频

    没有数据

相关阅读 Mac OS X 系统上如何升级 Mysql 数据库?mysql数据库root密码忘记的修改方法mysql启动错误1067简单解决办法彻底解决mysql中文乱码的办法Dos远程登录mysql数据库详细图文教程mysql怎么开启远程登录功能mysql自动定时备份数据库的最佳方法-支持windows系统mysql数据库损坏快速修复方法

文章评论
发表评论

热门文章 没有查询到任何记录。

最新文章 sql 2000升级到sql 20sql server安装教程 安装sql 2005时visual studio just-in-timesql server停止和重启命令SQL Server备份和灾难恢复MySQL数据库十大优化技巧

人气排行 如何轻松解决MYSQL数据库连接过多的错误sql server停止和重启命令SQL报表错误“未能为SSL/TLS安全通道建立信sql 2000升级到sql 2005后访问速度变慢图文安装sql 2005时visual studio just-in-timeSqlServer2000获取当前日期及格式SQL的排序,分组,统计常用语句解决MySQL中文模糊查询问题