Home > Database > Mysql Tutorial > MySQL字段添加和修改方法

MySQL字段添加和修改方法

WBOY
Release: 2016-06-01 09:57:14
Original
1342 people have browsed it

MySQL添加字段的方法并不复杂,下面将为您详细介绍MySQL添加字段和修改字段等操作的实现方法,希望对您学习MySQL添加字段方面会有所帮助。

1.登录数据库

<code class="language-sql">>mysql -u root -p 数据库名称</code>
Copy after login

2.查询所有数据表

<code class="language-sql">>show tables;</code>
Copy after login

3.查询表的字段信息

<code class="language-sql">>desc 表名称;</code>
Copy after login

4.1 添加表字段

<code class="language-sql">alter table table1 add transactor varchar(10) not Null;
alter table   table1 add id int unsigned not Null auto_increment primary key</code>
Copy after login

4.2 修改某个表的字段类型及指定为空或非空

<code class="language-sql">>alter table 表名称 change 字段名称 字段名称 字段类型 [是否允许非空];
>alter table 表名称 modify 字段名称 字段类型 [是否允许非空];</code>
Copy after login

>alter table 表名称 modify 字段名称 字段类型 [是否允许非空];

4.3 修改某个表的字段名称及指定为空或非空

<code class="language-sql">>alter table 表名称 change 字段原名称 字段新名称 字段类型 [是否允许非空</code>
Copy after login

4.4 如果要删除某一字段,可用命令

<code class="language-sql">ALTER TABLE mytable DROP 字段名;</code>
Copy after login

 

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template