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

2020年10月6日

Mysql---MySQL Server Administration

摘要: 1、The Mysql Server mysqld is the MySQL server. 1.1、Configuring the Server a,查看Mysql Server options and configurable system variables mysqld --verbose 阅读全文

posted @ 2020-10-06 10:11 anpeiyong 阅读(274) 评论(0) 推荐(0) 编辑

Mysql---MySQL 8.0

摘要: 1、General Information 1.1、What Is New in MySQL 8.0 Features Added in MySQL 8.0 1.2、MySQL Information Sources MySQL Websites: The primary website for M 阅读全文

posted @ 2020-10-06 09:37 anpeiyong 阅读(90) 评论(0) 推荐(0) 编辑

2020年9月30日

Mysql---索引命中

摘要: 1、假设 test_demo表中有个 复合索引 idx(sex,company,job) 1.1、最左前缀原则 explain select * from test_demo where sex='' and job ='' and company='' 结果:type:ref、key:idx ex 阅读全文

posted @ 2020-09-30 16:14 anpeiyong 阅读(341) 评论(0) 推荐(0) 编辑

SQL---Miscellaneous Functions

摘要: 1、DEFAULT 返回指定字段的默认值 DEFAULT(col_name) 2、UUID Returns a Universal Unique Identifier (UUID) generated according to RFC 4122 阅读全文

posted @ 2020-09-30 14:52 anpeiyong 阅读(108) 评论(0) 推荐(0) 编辑

SQL---json函数

摘要: 查看某个key是否存在 JSON_CONTAINS_PATH(json_doc, one_or_all, path1, path2, ...) json_doc:要检查的JSON文档。 one_or_all:指定是至少一个路径存在('one')还是所有路径都必须存在('all')。 path1, p 阅读全文

posted @ 2020-09-30 14:45 anpeiyong 阅读(180) 评论(0) 推荐(0) 编辑

SQL---Information Functions(信息函数)

摘要: 1、CONNECTION_ID() 返回当前连接的线程id 2、DATABASE() 返回当前使用的数据库名称 3、LAST_INSERT_ID() 最后一次新增列的值 阅读全文

posted @ 2020-09-30 14:41 anpeiyong 阅读(170) 评论(0) 推荐(0) 编辑

SQL---Flow Control Functions(控制流函数)

摘要: 1、case CASE value WHEN compare_value THEN result [WHEN compare_value THEN result ...] [ELSE result] END 2、if IF(表达式,expr2,expr3) 表达式为true,返回expr2; 表达式 阅读全文

posted @ 2020-09-30 14:21 anpeiyong 阅读(221) 评论(0) 推荐(0) 编辑

SQL---Type Conversion in Expression Evaluation(类型转换)

摘要: 1、mysql自动转换类型 1.1、string -> number select 1+'1' 结果:2 1.2、number -> string SELECT CONCAT(2,' test'); 结果:2 test 2、cast() CAST(expr AS type) 3、convert 不同 阅读全文

posted @ 2020-09-30 14:11 anpeiyong 阅读(192) 评论(0) 推荐(0) 编辑

Mysql---存储过程

摘要: -- 创建循环存储过程 create procedure pro12() begin declare i int; set i = 0; while i<20000 do insert into test_demo (name, job) values ('jack5', 'job'); set i 阅读全文

posted @ 2020-09-30 10:19 anpeiyong 阅读(162) 评论(0) 推荐(0) 编辑

Mysql---MysqlServer信息

摘要: 1、锁信息 show status like '%lock%'; show status like 'innodb_row_lock%'; show OPEN TABLES where In_use > 0; show status like 'table%'; 阅读全文

posted @ 2020-09-30 08:53 anpeiyong 阅读(96) 评论(0) 推荐(0) 编辑

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

导航