随笔分类 -  mysql

摘要:validate_password_policy决定密码的验证策略,默认等级为MEDIUM(中等),可通过以下命令修改为LOW(低) set global validate_password_policy=0; 密码的长度是由validate_password_length决定的,但是可以通过以下命 阅读全文
posted @ 2021-01-08 23:11 anobscureretreat 阅读(120) 评论(0) 推荐(0) 编辑
摘要:code vi /etc/my.cnf 1.找不到初始密码可以在my.ini中[mysqld] 添加: skip-grant-tables 2.修改MySQL数据库配置文件无密码登录后,修改密码报错: ERROR 1290 (HY000): The MySQL server is running w 阅读全文
posted @ 2021-01-08 23:02 anobscureretreat 阅读(1159) 评论(0) 推荐(0) 编辑
摘要:code grep 'temporary password' /var/log/mysqld.log 输出 [root@xxx ~]# grep 'temporary password' /var/log/mysqld.log 2019-09-28T17:13:20.357871Z 1 [Note] 阅读全文
posted @ 2021-01-08 22:30 anobscureretreat 阅读(2608) 评论(0) 推荐(0) 编辑
摘要:code [root@xxx ~]# vi /etc/my.cnf 在[mysqld]中添加 skip-grant-tables 例如: [mysqld] skip-grant-tables datadir=/var/lib/mysql socket=/var/lib/mysql/mysql.soc 阅读全文
posted @ 2021-01-08 21:35 anobscureretreat 阅读(83) 评论(0) 推荐(0) 编辑
摘要:基本操作:登陆:mysql -uroot -h127.0.0.1 -P3306 -pmysql -uroot -p(本机不用写host)退出mysql:ctrl+z+回车,或者exit端口号默认是3306,但是可以通过安装目录下的配置文件修改。 #安装pymysql pip3 install pym 阅读全文
posted @ 2020-12-24 22:53 anobscureretreat 阅读(265) 评论(0) 推荐(0) 编辑
摘要:什么是索引 索引是对记录集的多个字段进行排序的方法。在一张表中为一个字段创建一个索引,将创建另外一个数据结构,包含字段数值以及指向相关记录的指针,然后对这个索引结构进行排序,允许在该数据上进行二分法排序。副作用是索引需要额外的磁盘空间,对于MyISAM引擎而言,这些索引是被统一保存在一张表中的,这个 阅读全文
posted @ 2019-11-19 17:50 anobscureretreat 阅读(1160) 评论(0) 推荐(0) 编辑
摘要:#从表iot_company选择,company_name字段包含10091015的项SELECT id FROM iot_company WHERE company_name LIKE "%10091015%"; 阅读全文
posted @ 2019-10-09 13:44 anobscureretreat 阅读(1468) 评论(0) 推荐(0) 编辑
摘要:原因是因为MySQL有密码设置的规范,具体是与validate_password_policy的值有关: MySQL完整的初始密码规则可以通过如下命令查看: 解决方法: 这样就可以设置简单的密码了。 参考: https://www.cnblogs.com/nicknailo/articles/856 阅读全文
posted @ 2019-09-29 01:28 anobscureretreat 阅读(346) 评论(0) 推荐(0) 编辑
摘要:#导入库 import pymysql #创建数据库 conn=pymysql.connect(host='localhost',port=3306,db='test',user='root',passwd='password',charset ='utf8') cur=conn.cursor() #查询原数据-----------------------------------------... 阅读全文
posted @ 2019-09-10 21:16 anobscureretreat 阅读(142) 评论(0) 推荐(0) 编辑
摘要:一、启动方式 1、使用 service 启动:service mysqld start 二、停止 1、使用 service 启动:service mysqld stop 三、重启 1、 使用 service 启动:service mysqld restart 阅读全文
posted @ 2019-08-19 13:49 anobscureretreat 阅读(614) 评论(0) 推荐(0) 编辑
摘要:oracle的全连接查询可以直接用full on,但是在mysql中没有full join,mysql使用union实现全连接. oracle的全连接 mysql的全连接 参考: https://blog.csdn.net/qq_36387683/article/details/93600415 阅读全文
posted @ 2019-08-16 02:29 anobscureretreat 阅读(367) 评论(0) 推荐(0) 编辑
摘要:参考: https://blog.csdn.net/GV7lZB0y87u7C/article/details/79969293 阅读全文
posted @ 2019-08-16 02:19 anobscureretreat 阅读(348) 评论(0) 推荐(0) 编辑
摘要:MySQL官方对索引的定义为:索引(Index)是帮助MySQL高效获取数据的数据结构。 我们可以简单理解为:快速查找排好序的一种数据结构。 Mysql索引主要有两种结构:B+Tree索引和Hash索引。我们平常所说的索引,如果没有特别指明,一般都是指B树结构组织的索引(B+Tree索引)。 参考: 阅读全文
posted @ 2019-08-16 02:18 anobscureretreat 阅读(298) 评论(0) 推荐(0) 编辑
摘要:参考: https://www.cnblogs.com/justdo-it/articles/8480460.html 阅读全文
posted @ 2019-08-14 12:40 anobscureretreat 阅读(300) 评论(0) 推荐(0) 编辑
摘要:参考: https://www.cnblogs.com/flintlovesam/p/6832485.html 阅读全文
posted @ 2019-08-09 23:29 anobscureretreat 阅读(401) 评论(0) 推荐(0) 编辑
摘要:mysql> select round(2.232,2); +----------------+ | round(2.232,2) | +----------------+ | 2.23 | +----------------+ 1 row in set (0.00 sec) mysql> select convert(1.2323,decimal(6,2)); +... 阅读全文
posted @ 2019-08-07 23:26 anobscureretreat 阅读(1394) 评论(0) 推荐(0) 编辑
摘要:创建视图 查看视图 删除视图 参考: https://www.2cto.com/database/201803/726747.html 阅读全文
posted @ 2019-08-07 13:40 anobscureretreat 阅读(166) 评论(0) 推荐(0) 编辑
摘要:mysql> select * from user; +------+-----------+-----------+ | id | name | address | +------+-----------+-----------+ | 1 | xiaoming | beijing | | 2 | xiaobai | shandong | | ... 阅读全文
posted @ 2019-08-07 02:24 anobscureretreat 阅读(289) 评论(0) 推荐(0) 编辑
摘要:innodb: 可靠的事物处理引擎,不支持全文搜索 memeory: 数据存储在内存,速度很快 myisam: 性能极高的引擎,支持全文本搜索,但不支持事物 阅读全文
posted @ 2019-08-07 02:20 anobscureretreat 阅读(357) 评论(0) 推荐(0) 编辑
摘要:mysql> select * from user; +------+----------+-----------+ | id | name | address | +------+----------+-----------+ | 1 | xiaoming | beijing | | 2 | xiaobai | shandong | | 3 | x... 阅读全文
posted @ 2019-08-07 02:06 anobscureretreat 阅读(162) 评论(0) 推荐(0) 编辑