mysql添加字段的方法并不复杂,下面将为您详细介绍mysql添加字段和修改字段等操作的实现方法,希望对您学习mysql添加字段方面会有所帮助。
1添加表字段
alter table table1 add transactor varchar(10) not null;alter table table1 add id int unsigned not null auto_increment primary key
添加到特定字段后面的语句例子:
alter table <表名> add <新字段名><数据类型>[约束条件];alter table mytablename add newdbfield varchar(30) null after existdbfield;alter table tablename001 add webadminpass varchar(30) null after result;
2.修改某个表的字段类型及指定为空或非空
alter table 表名称 change 字段名称 字段名称 字段类型 [是否允许非空];alter table 表名称 modify 字段名称 字段类型 [是否允许非空];alter table 表名称 modify 字段名称 字段类型 [是否允许非空];
3.修改某个表的字段名称及指定为空或非空
alter table 表名称 change 字段原名称 字段新名称 字段类型 [是否允许非空
4如果要删除某一字段,可用命令:
alter table mytable drop 字段名;
mysql sql获取表名&字段名的查询语句
1:查询数据库中所有表名
select table_namefrom information_schema.tableswhere table_schema='csdb' and table_type='base table';table_schema:数据库名称 information_schema 表示系统库。 table_type='base table‘:限定只查询基表。
2:查询指定数据库中指定表的所有字段名column_name
select column_name from information_schema.columns where table_schema='csdb' and table_name='users';table_schema:数据库名 table_name:表名
工作用到例子:
select count(*) from information_schema.columns where table_schema='yanfa' and table_name='tablename001' and column_name='result1'; #select table_name from information_schema.tables where table_schema='yanfa' and table_type='base table';
相关学习推荐:mysql教程(视频)
以上就是mysql如何操作数据表的详细内容。
