2022年11月17日

libaio.so.1()(64bit) is needed by MySQL-server 问题解决办法

摘要: yum install libaio 这样就ok了,就可以继续安装mysql了。 阅读全文

posted @ 2022-11-17 22:06 小石头小祖宗 阅读(25) 评论(0) 推荐(0) 编辑

mysql8.0修改用户密码

摘要: 方式一(刚安装的数据库只能使用此) alter user user() identified BY '123456'; 方式二 alter user user() identified BY '123456'; alter user `root` identified by '123456'; -- 阅读全文

posted @ 2022-11-17 15:52 小石头小祖宗 阅读(9) 评论(0) 推荐(0) 编辑

mysql查看所有表的详细信息和注释(表、视图、函数等),简要查看表字段信息describe、show full columns。查看对象DDL语句、建表语句

摘要: 1.总结 1.1.查看所有对象的详细信息和注释(表、视图、函数等) -- 1.表、视图、字段的详细信息、注释说明 -- 1.1.表、视图 select * from information_schema.tables where table_schema in ('test') order by t 阅读全文

posted @ 2022-11-17 14:37 小石头小祖宗 阅读(95) 评论(0) 推荐(0) 编辑

导航