摘要: MySQL 数据库日志解析工具用法,bin-log日志格式row。 python3 binlog2sql/binlog2sql.py -h 127.0.0.1 -P 3306 -u root -p 123 -d zhengzhou_annotation -t employee_information 阅读全文
posted @ 2017-12-14 23:06 dream-子皿 阅读(138) 评论(0) 推荐(0) 编辑
摘要: 关于性别字段的存储数据类型选用 -- 性别字段 create table actor2 (id int not null auto_increment primary key,name char(32) not null, gender char(32) default '男' check (gen 阅读全文
posted @ 2017-12-14 20:19 dream-子皿 阅读(169) 评论(0) 推荐(0) 编辑
摘要: egon笔记: 1 单表查询 select distinct 字段1,字段2,字段3 from 表 where 约束条件 group by 分组字段 having 过滤条件 order by 排序字段 limit n; def from(file): f=open(file) return f de 阅读全文
posted @ 2017-12-14 19:53 dream-子皿 阅读(756) 评论(0) 推荐(0) 编辑
摘要: 数据库的查询操作是重点中的重点,最核心的内容就是它! 在查询时关键字的定义顺序: select distinct(select-list) from (left-table) (type-join) join (right-table) on join(condition-联结两个表的条件) whe 阅读全文
posted @ 2017-12-14 19:41 dream-子皿 阅读(152) 评论(0) 推荐(0) 编辑