CentOS安装MySQL的完整步骤
摘要:1、官方安装文档 http://dev.mysql.com/doc/mysql-yum-repo-quick-guide/en/ 2、下载 Mysql yum包 http://dev.mysql.com/downloads/repo/yum/ 下载到本地再上传到服务器,或者使用wget 直接下载 w
阅读全文
posted @
2019-04-18 13:45
羽林.Luouy
Percona MySQL 5.7 Linux通用二进制包安装(CentOS 6)
摘要:Linux 安装 Percona http://blog.itpub.net/26506993/viewspace-2136501/ https://www.cnblogs.com/snowwhitecityofsky/p/9177475.html
阅读全文
posted @
2018-07-10 17:30
羽林.Luouy
mysql查询当前时间,一天内,一周,一个月内的sql语句
摘要:查询一天:select * from 表名 where to_days(时间字段名) = to_days(now()); 昨天 SELECT * FROM 表名 WHERE TO_DAYS( NOW( ) ) - TO_DAYS( 时间字段名) <= 1 7天 SELECT * FROM 表名 wh
阅读全文
posted @
2017-09-25 10:46
羽林.Luouy
show processlist结果筛选(转)
摘要:在MySQL里面 这条语句可以正常执行,但是 就会报错了: Error Code : 1064You have an error in your SQL syntax; check the manual that corresponds to your mysql server version fo
阅读全文
posted @
2017-08-22 09:31
羽林.Luouy
MySQL 中的三中循环 while loop repeat 的基本用法
摘要:存储过程加游标一起使用的基本操作 http://www.cnblogs.com/Lvhengshuai/category/997161.html
阅读全文
posted @
2017-08-07 21:11
羽林.Luouy
MySQL通过游标来实现通过查询结果集循环
摘要:http://www.cnblogs.com/silentdoer/articles/6274576.html
阅读全文
posted @
2017-08-07 21:06
羽林.Luouy
MYSQL整理的语法
摘要:MYSQL整理的语法 http://www.cnblogs.com/suoning/p/5744849.html
阅读全文
posted @
2016-10-09 13:58
羽林.Luouy
阅读(236)
推荐(0)