上一页 1 ··· 22 23 24 25 26 27 28 29 30 ··· 45 下一页

2020年9月29日

Mysql---MySQL sys Schema

摘要: 1、概述 1.1、MySQL 5.7.7及更高版本包括sys schema,这是一组 帮助DBA和开发人员解释Performance schema收集的数据的对象。 用途:sys schema对象可用于典型的调优和诊断用例。 此schema中的对象包括: 将Performance Schema数据汇 阅读全文

posted @ 2020-09-29 10:50 anpeiyong 阅读(152) 评论(0) 推荐(0) 编辑

Mysql---MySQL Performance Schema

摘要: 1、概述 1.1、The MySQL Performance Schema is a feature for monitoring MySQL Server execution at a low level. MySQL 5.5开始新增一个数据库:PERFORMANCE_SCHEMA,主要用于收集数 阅读全文

posted @ 2020-09-29 10:49 anpeiyong 阅读(99) 评论(0) 推荐(0) 编辑

2020年9月27日

Mysql---information_schema

摘要: 1、概述 1.1、INFORMATION_SCHEMA provides access to database metadata, information about the MySQL server such as the name of a database or table, the data 阅读全文

posted @ 2020-09-27 14:42 anpeiyong 阅读(117) 评论(0) 推荐(0) 编辑

2020年9月11日

Mysql---The InnoDB Storage Engine

该文被密码保护。 阅读全文

posted @ 2020-09-11 17:33 anpeiyong 阅读(31) 评论(0) 推荐(0) 编辑

2020年9月10日

Mysql服务器信息

摘要: https://blog.csdn.net/hanyetuya/article/details/51423649 1、MySQL服务器配置信息 show variables; 2、MySQL服务器运行的各种状态值 show global status; 3、慢查询 show variables li 阅读全文

posted @ 2020-09-10 15:04 anpeiyong 阅读(113) 评论(0) 推荐(0) 编辑

2020年9月1日

索引---拓展

摘要: 中文文档:http://www.deituicms.com/mysql8cn/cn/innodb-storage-engine.html#innodb-indexes 英文文档:https://dev.mysql.com/doc/refman/5.7/en/innodb-next-key-locki 阅读全文

posted @ 2020-09-01 09:30 anpeiyong 阅读(107) 评论(0) 推荐(0) 编辑

2020年8月28日

SQL---表内容查询

摘要: 1、查询表的字段及字段类型 select column_name columnName, column_type columnType from information_schema.columns where table_name = '表名' and column_name = '字段名' 2、 阅读全文

posted @ 2020-08-28 15:53 anpeiyong 阅读(374) 评论(0) 推荐(0) 编辑

SQL---修改表

摘要: 1、修改字段类型长度 ALTER TABLE test_demo MODIFY COLUMN name varchar(12) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL; 阅读全文

posted @ 2020-08-28 10:20 anpeiyong 阅读(241) 评论(0) 推荐(0) 编辑

2020年8月21日

SQL-Mysql-琐事

摘要: 1、将字符串的数字值 转换为 数字 eg:SELECT CAST('80' AS SIGNED); 阅读全文

posted @ 2020-08-21 14:24 anpeiyong 阅读(59) 评论(0) 推荐(0) 编辑

2020年8月20日

SQL-Mysql-数据操作

摘要: 1、replace into replace into 跟 insert 功能类似,不同点在于:replace into 首先尝试插入数据到表中, 1. 如果发现表中已经有此行数据(根据主键或者唯一索引判断)则先删除此行数据,然后插入新的数据。 2. 否则,直接插入新数据。 MySQL replac 阅读全文

posted @ 2020-08-20 16:18 anpeiyong 阅读(84) 评论(0) 推荐(0) 编辑

上一页 1 ··· 22 23 24 25 26 27 28 29 30 ··· 45 下一页

导航