mysql
文章平均质量分 58
rainth
Coding
Coding
Coding Again......
展开
-
centos7下安装mysql
centos7 安装mysql原创 2022-02-02 11:35:04 · 1587 阅读 · 0 评论 -
PHP lareval中group_concat函数数据长度有1024限制截断的解决
在PHP的leravel里编写sql,使用了group_conca函数,结果数据长度总是只拿到1024个字节,后面的全部截断了。 $floors = DB::select(" select build, floor_id, floor,原创 2021-05-16 18:42:25 · 487 阅读 · 0 评论 -
修改phpMyAdmin的失效时间
修改phpMyAdmin的实效时间打开phpMyAdmin根目录,然后打开libraries文件夹打开config.default.PHP查找$cfg['LoginCookieValidity'],找到的结果可能类似于这样的$cfg['LoginCookieValidity'] = 1440; 我们只需要将设置一个足够大的数就可以了,如$cfg['LoginCoo转载 2018-01-09 10:06:51 · 764 阅读 · 0 评论 -
mysql 查看数据库中所有表的记录数
use information_schema;select table_name,table_rows from tableswhere TABLE_SCHEMA = 'testdb'order by table_rows desc;转载 2018-01-09 10:26:15 · 3755 阅读 · 0 评论 -
ubuntu下mysql安装、访问、配置及更改数据库存储路径
原始出处:https://www.cnblogs.com/wwjchina/p/10949806.htmlhttps://www.cnblogs.com/ruofengzhishang/p/5477502.html一、安装mysql ubuntu系统安装配置APT源,apt install mysql-server mysql-client二、查看安装端口情况...转载 2019-08-21 11:22:32 · 963 阅读 · 0 评论