• sql练习

    直接上源码 1 # ***************************** 创建数据库 ***************************** 2 -- student(学生表) 3 create table student( 4 sno int primary key not null , -- 序号(主键),不可为空 5 sname varchar ( 20 ) not null , -- 姓名 6 ssex varchar ( 20...

    2018-06-18 01:41:07

  • 利用binlog2sql闪回丢失数据

    today,i'll using the open source tool named "binlog2sql" which is release by danfengchao to do some flashback test. here's the github address:https://github.com/danfengcao/binlog2sql according to the readme.md doc,using "git" command to download it...

    2018-06-18 01:40:39

  • MySQL 5.7增强半同步测试

    we've know the machenism of semi-synchronous replication in mypreviousarticle,let's do some test to learn more details about it.now i have three virtual machines in my test environment,one master and the other two slaves are replicated from master w...

    2018-06-18 01:40:28

  • Flask入门数据库的查询集与过滤器(十一)

    ...

    2018-06-18 01:39:56

  • mysql随机查询符合条件的几条记录

    随机查询,方法可以有很多种。比如,查询出所有记录,然后随机从列表中取n条记录。使用程序便可实现。可是程序实现必须查询出所有符合条件的记录(至少是所有符合条件的记录id),然后再随机取出n个id,查询数据库。但是效率毕竟没有数据库中直接查询得快。下面介绍mys...

    2018-06-18 01:40:28

  • mysql主从复制与主主复制

    阅读目录 1、简介 2、环境说明 3、主从复制 3.1、MySQL 3.2、配置文件 3.3、开始构建主从复制 3.4、测试主从复制 4、MySql主主复制 4.1、实现原理 4.2、配置文件 4.3、开始构建主主复制 4.4、测试主主复制 5、注意事项 1、简介 MySQL作为世界上使用最为广泛的数据库之...

    2018-06-18 01:40:27

  • 第四模块MySQL50题作业,以及由作业引申出来的一些高

    一、表关系 先参照如下表结构创建7张表格,并创建相关约束 班级表:class 学生表:student cid caption grade_id sid sname gender class_id 1 一年一班 1 1 乔丹 女 1 2 二年一班 2 2 艾弗森 女 1 3 三年二班 3 3 科比 男 2 老师表:teacher 课程表:course tid tname...

    2018-06-18 01:40:08

  • 六项约束

    非空约束 create table 表名( id int not null ); 唯一约束 create table 表名( id int unique key, name varchar(20) ); 主键约束 primary key 主键的作用:可以唯一标示一条数据,每张表里只有一个主键。 主键的特性:非空唯一。当表里没有主键时,第一个出现的非空...

    2018-06-18 01:39:54

  • window系统mysql无法输入和无法显示中文的处理配置

    第一步 :使用记事本打开mysql安装目录下的"my.ini”文件。 # MySQL client library initialization.[client]port = 3306 [mysql] default -character- set =utf8 看看default-character-set 是不是 utf8不是的话 改为utf8即可!(以前的版本可能没有这句话 直接加上就...

    2018-06-18 01:39:45

  • 用RestTemplate调取接口,取得返回数据,携带header,动

    记录我自己的工作 get 请求 ,携带 请求头 header (token) url 根据参数 动态拼接 参数 放入 map 动态拼接 private String lclUrl = "http://xxx.xxxx.com/lcl"; private String TOKEN360FOB_URL = "http://xxx.xxxxxx.com/token?username={name}password={password}";...

    2018-06-18 01:39:38

2