上一页 1 ··· 19 20 21 22 23 24 25 26 27 ··· 37 下一页

2018年1月22日

摘要: create table msg(id int primary key auto_increment,title varchar(20),name varchar(60),content varchar(1000))charset utf8; insert into msg (title,name, 阅读全文
posted @ 2018-01-22 13:45 sunny_2016 阅读(271) 评论(0) 推荐(0)

2018年1月18日

该文被密码保护。 阅读全文
posted @ 2018-01-18 13:31 sunny_2016 阅读(1) 评论(0) 推荐(0)
摘要: TPS (transaction per second)代表每秒执行的事务数量,可基于测试周期内完成的事务数量计算得出。例如,用户每分钟执行6个事务,TPS为6 / 60s = 0.10 TPS。 同时我们会知道事务的响应时间(或节拍),以此例,60秒完成6个事务也同时代表每个事务的响应时间或节拍为 阅读全文
posted @ 2018-01-18 13:23 sunny_2016 阅读(847) 评论(0) 推荐(0)

2018年1月16日

摘要: 各种showshow columns from my_student;show grants for root;show aviables;show processlist;show table status alter table my_class add id varchar(10);alter 阅读全文
posted @ 2018-01-16 13:23 sunny_2016 阅读(140) 评论(0) 推荐(0)

2018年1月12日

摘要: 20180109-- 高级查询 select * from my_student; select * from my_int;select * from my_student,my_int; select * from (select * from my_student) as s; alter t 阅读全文
posted @ 2018-01-12 13:25 sunny_2016 阅读(110) 评论(0) 推荐(0)

2018年1月6日

该文被密码保护。 阅读全文
posted @ 2018-01-06 15:09 sunny_2016 阅读(1) 评论(0) 推荐(0)

2018年1月3日

摘要: 代理端口设置:127.0.0.1:8888 https抓包设置 模拟post请求: http://xxx.xxxx.com/portal/login.htm Cookie: xxxx account=13592xxxxxx&password=xxxxxx&type=1 Content-Type: a 阅读全文
posted @ 2018-01-03 13:20 sunny_2016 阅读(155) 评论(0) 推荐(0)

2017年12月28日

摘要: 1、登陆mysql数据库 mysql -u root -p 查看user表 mysql> use mysql;Database changedmysql> select host,user,password from user;+ + + +| host | user | password |+ + 阅读全文
posted @ 2017-12-28 13:03 sunny_2016 阅读(98) 评论(0) 推荐(0)
摘要: 今天在安装mysql5.7.8的时候遇到一些问题,首当其冲便的是初始root密码的变更,特分享解决方法如下: 1.mysql5.7会生成一个初始化密码,而在之前的版本首次登陆不需要登录。 shell> cat /root/.mysql_secret # Password set for user ' 阅读全文
posted @ 2017-12-28 12:54 sunny_2016 阅读(607) 评论(0) 推荐(0)

2017年12月21日

摘要: mysql -u root -p;create database qa;show databases;use qa; create table results(id int not null auto_increment,primary key (id));) alter table results 阅读全文
posted @ 2017-12-21 14:08 sunny_2016 阅读(149) 评论(0) 推荐(0)
上一页 1 ··· 19 20 21 22 23 24 25 26 27 ··· 37 下一页

导航