mysql 常用命令
2021-11-08 本文已影响0人
喵_3067
1. 增加字段
命令:alter table <table_name> add <field_name> 类型 其他;
示例:alter table build_status add compile_status varchar(255) default 'NULL';
2.显示所有字段信息
实例:show full columns from build_status;
1. 增加字段
命令:alter table <table_name> add <field_name> 类型 其他;
示例:alter table build_status add compile_status varchar(255) default 'NULL';
2.显示所有字段信息
实例:show full columns from build_status;