07 2017 档案

摘要:select t1.table_schema,t1.table_name from information_schema.tables t1 left outer join information_schema.TABLE_CONSTRAINTS t2 on t1.table_schema = t2.TABLE_SCHEMA and t1.table_name = t2.TABLE_NAM... 阅读全文
posted @ 2017-07-25 15:22 sunss 阅读(341) 评论(0) 推荐(0)
摘要:语法 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 REPLACE [LOW_PRIORITY | DELAYED] [INTO] tbl_name [PARTITION (partition_name,...)] [(col_name,...)] {VALUES | 阅读全文
posted @ 2017-07-14 11:29 sunss 阅读(1047) 评论(0) 推荐(0)
摘要:innodb buffer pool有几个目的: 缓存数据--众所周知,这个占了buffer pool的大半空间 缓存目录--数据字典 insert buffer 排序的内部结构--比如自适应hash的结构或者一些行锁 缓存数据--众所周知,这个占了buffer pool的大半空间 缓存目录--数据 阅读全文
posted @ 2017-07-10 15:43 sunss 阅读(3865) 评论(0) 推荐(0)