Linux
Windows
W-程序
存储
网络技术
防火墙
虚拟化
路由交换
数据库
mysql
脚本语言
python
大模型
软件中心
学海无涯
有疑问可发邮件
[email protected]
。
累计撰写
326
篇文章
累计创建
85
个标签
累计收到
0
条评论
栏目
Linux
Windows
W-程序
存储
网络技术
防火墙
虚拟化
路由交换
数据库
mysql
脚本语言
python
大模型
软件中心
目 录
CONTENT
以下是
mysql
相关的文章
2022-07-22
Mysql结束正在进行的SQL
1、show full processlist 查询正在执行的进程 2、通过kill 进程ID结束命令
2022-07-22
12
0
0
mysql
数据库
2022-07-22
MySQL查询数据库中的表占用空间的大小
1、查看指定数据库中各表占用空间的大小 select table_schema as '数据库', table_name as '表名', table_rows as '记录数', truncate(data_length/1024/1024, 2) as '数据容量(MB)', truncate(
2022-07-22
7
0
0
mysql
数据库
2019-05-14
Yum源安装MariaDB
使用官网发布的Yum源,安装MariaDB,减少编译安装的配置及后期维护成本。让管理更加简便。 官网:https://mariadb.org/ Yum配置链接:https://downloads.mariadb.org/mariadb/repositories/#mirror=shanghai-un
2019-05-14
12
0
0
数据库
mysql
2018-01-21
创建UTF-8的Mysql数据库
一、创建数据库 1. 创建UTF8编码数据库 CREATE DATABASE db_name DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci; 2. 验证数据库编码
2018-01-21
6
0
0
Linux
mysql
L-服务
2018-01-21
MariaDB for Python
一 、安装MySQL-python yum -y install MySQL-python 二、测试 python import MySQLdb
2018-01-21
21
0
0
python
mysql
2017-06-09
清空mysql表数据
delete from 表名; truncate table 表名; 不带where参数的delete语句可以删除mysql表中所有内容,使用truncate table也可以清空mysql表中所有内容。 效率上truncate比delete快,但truncate删除后不记录mysql日志,不可以恢
2017-06-09
18
0
0
mysql
Linux
数据库
2017-03-27
Centos 6.5 安装 mysql 5.7
下载 mysql57-community-release-el6-9.noarch.rpm及mysql-community-server-5.7.17-1.el6.x86_64.rpm两个软件包 1.安装mysql57-community-release-el6-9.noarch.rpm [root
2017-03-27
25
0
0
数据库
mysql
Linux
2017-03-27
ERROR 1820 (HY000): You must reset your password using ALTER USER statement before executing this statement.
在mysql 5.7 中,进入mysql执行操作时 ,出现以下提示 mysql> select version(); ERROR 1820 (HY000): You must reset your password using ALTER USER statement before executin
2017-03-27
17
0
0
mysql
数据库
Linux
2017-03-27
ERROR 1819 (HY000): Your password does not satisfy the current policy requirements
mysql> ALTER USER 'root'@'localhost' IDENTIFIED BY '123456'; ERROR 1819 (HY000): Your password does not satisfy the current policy requirements 这是与val
2017-03-27
14
0
0
Linux
mysql
数据库
2017-03-27
libnuma.so.1()(64bit) is needed by mysql-community-server-5.7.17-1.el6.x86_64
[root@play ~]# rpm -ivh mysql-community-server-5.7.17-1.el6.x86_64.rpm error: Failed dependencies: libnuma.so.1()(64bit) is needed by mysql-communit
2017-03-27
26
0
0
Linux
数据库
mysql
1
2