Mysql
文章平均质量分 83
adwfcu
这个作者很懒,什么都没留下…
展开
-
Cannot delete or update a parent row: a foreign key constraint fails
Cannot delete or update a parent row: a foreign key constraint fails2010-08-31 15:19Cannot delete or update a parent row: a foreign key cons转载 2011-07-19 11:24:05 · 3017 阅读 · 1 评论 -
MySQL与MsSQL 对日期时间操作的函数
一、MySQL 获得当前日期时间 函数1.1 获得当前日期 + 时间(date + time)函数:now()mysql > select now();+ -- -------------------+ | now() | + -- -------------------+ | 2008 - 08 - 08 2转载 2013-04-28 17:01:46 · 903 阅读 · 0 评论 -
Mysql 中使用DATE_FORMAT函数按月、周统计数据
项目中的统计报表作的很多,需求中有按周、月统计数据的。查看了Mysql的API,发现Date_format是格式化日期的,看了Date_format()的具体说明后就用这个函数按周统计,sql大致如下:select DATE_FORMAT(check_date ,'%X-%V') dates,avg(weight)/10000 weight from ho_body where use转载 2013-04-28 17:03:32 · 1533 阅读 · 0 评论 -
mysql 按年度、季度、月度、周、日SQL统计查询
一、年度查询查询 本年度的数据SELECT *FROM blog_articleWHERE year( FROM_UNIXTIME( BlogCreateTime ) ) = year( curdate( ))二、查询季度数据查询数据附带季度数SELECT ArticleId, quarter( FROM_UNIXTIME( `BlogCre转载 2013-04-28 17:14:46 · 1057 阅读 · 0 评论 -
mysql查询一天,查询一周,查询一个月的数据
mysql查询一天,查询一周,查询一个月的数据查询一天:select * from table where to_days(column_time) = to_days(now());select * from table where date(column_time) = curdate();查询一周:select * from table where DATE_转载 2013-04-28 14:48:38 · 2889 阅读 · 0 评论 -
mysql错误: STOPPING server from pid file /tmp/mysqld.pid
执行/usr/bin/mysqld_safe &后出现:Starting mysqld daemon with databases from /var/lib/mysqlSTOPPING server from pid file /tmp/mysqld.pid061026 20:32:33 mysqld ended1.data文件夹的mysql权限没有给出!执行命令:转载 2011-10-21 14:00:25 · 3320 阅读 · 0 评论 -
NoSQL数据库笔谈
NoSQL数据库笔谈appdir , ssv , paper序思想篇CAP最终一致性变体BASE其他I/O的五分钟法则不要删除数据RAM是硬盘,硬盘是磁带Amdahl定律和Gustafson定律万兆以太网手段篇一转载 2011-09-22 21:33:46 · 1619 阅读 · 0 评论 -
http://www.md5decrypter.co.uk/
http://www.md5decrypter.co.uk/原创 2011-08-09 18:02:08 · 1185 阅读 · 0 评论 -
MySQL的大小写敏感性 lower_case_table_names
在 MySQL 中,数据库和表对就于那些目录下的目录和文件。因而,操作系统的敏感性决定数据库和表命名的大小写敏感。这就意味着数据库和表名在 Windows 中是大小写不敏感的,而在大多数类型的 Unix 系统中是大小写敏感的。奇怪的是列名与列的别名在所有的情况下均是忽略大小写的,原创 2011-07-19 11:36:39 · 1667 阅读 · 0 评论 -
mysql Access denied for user ''@'localhost' to database
mysql Access denied for user ''@'localhost' to databaseAccess denied for user ''@'localhost' to database安装Mysql后在终端输入mysql, mysql成功启动,退出,再输入转载 2011-07-19 11:28:15 · 1846 阅读 · 0 评论 -
How do I convert from BLOB to TEXT in Mysql?
After some googling for you i've found this. It's an answer to a person who wants to convert blob to char(1000) with utf8 encodingCAST(a.ar_options AS CHAR(10000) CHARACTER SET utf8)This is hi转载 2013-09-12 11:19:18 · 1227 阅读 · 0 评论