mysql简介
文章平均质量分 90
qq_31443653
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
mysql模拟sequence
模拟oracle中sequence实现 新建查询1、创建表tb_sequence,用来存放sequence值:create table tb_sequence(name varchar(50) not null,current_value int not null,_increment int not null default 1, primary key(name)); 2、手动插入数据: i原创 2017-11-03 17:15:49 · 525 阅读 · 0 评论 -
学习链接
nginxNginx配置说明:http://www.jb51.net/article/79216.htm; Nginx+Tomcat搭建高性能负载均衡集群:http://blog.youkuaiyun.com/wang379275614/article/details/47778201; 常用命令: nginx -s stop 强制关闭 nginx -s quit 安全关闭 nginx -s re原创 2017-10-20 15:19:56 · 290 阅读 · 0 评论 -
数据库知识整合
只返回不同的值 select distinct id from products; 限制结果 从行5开始的第5行,第一个数位置,第二个为要检索的行数; select name from pr limit 5,5 从mysql5开始,从第三行开始取4行 limit 4 offset 3 排序: 默认ASC升序,DESC降序,先降序排列,相同的升序排列如下,找出最贵的两个,...原创 2017-09-06 15:27:14 · 381 阅读 · 1 评论
分享