摘要:
MySQL # 更改数据库字段类型 alter table 表名 modify column 字段名 新字段类型; alter table exec_results modify column body longtext; # 新增字段 alter table exec_history add ma 阅读全文
摘要:
Linux 查找 MySQL 配置文件 1.找到 MySQL 的位置 which mysql # /usr/bin/mysql 2.执行查找命令 /usr/bin/mysql --verbose --help|grep -A 1 'Default options' # /etc/my.cnf /et 阅读全文