上一页 1 ··· 23 24 25 26 27 28 29 30 31 ··· 46 下一页

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 阅读(122) 评论(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 阅读(114) 评论(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 阅读(382) 评论(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 阅读(257) 评论(0) 推荐(0)

2020年8月21日

SQL-Mysql-琐事

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

posted @ 2020-08-21 14:24 anpeiyong 阅读(64) 评论(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 阅读(88) 评论(0) 推荐(0)

2020年8月19日

SQL---String Functions(字符串函数)

摘要: 1、group_concat( [DISTINCT] 要连接的字段 [Order BY ASC/DESC 排序字段] [Separator '分隔符'] ) 字符串拼接 https://www.iteye.com/blog/hchmsguo-555543 阅读全文

posted @ 2020-08-19 13:33 anpeiyong 阅读(264) 评论(0) 推荐(0)

SQL---Date and Time Functions(日期函数)

摘要: 1、DATE_ADD(date,INTERVAL expr type) 向日期添加指定的时间间隔; date: 参数是合法的日期表达式 expr: 参数是您希望添加的时间间隔 type:时间单位 2、TIMESTAMPDIFF(unit,time1,time2) 返回指定时间单位的 时间差 unit 阅读全文

posted @ 2020-08-19 10:16 anpeiyong 阅读(220) 评论(0) 推荐(0)

2020年8月9日

Activiti---流程部署

摘要: package com.an.processdeploy; import org.activiti.engine.ProcessEngine; import org.activiti.engine.ProcessEngines; import org.activiti.engine.Reposito 阅读全文

posted @ 2020-08-09 22:12 anpeiyong 阅读(302) 评论(0) 推荐(0)

上一页 1 ··· 23 24 25 26 27 28 29 30 31 ··· 46 下一页

导航