美文网首页
mysql 常用命令

mysql 常用命令

作者: 喵_3067 | 来源:发表于2021-11-08 15:20 被阅读0次

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;

相关文章

网友评论

      本文标题:mysql 常用命令

      本文链接:https://www.haomeiwen.com/subject/pwwuzltx.html