喂神

博客园 首页 新随笔 联系 订阅 管理

2014年4月12日 #

摘要: 做分页功能,遇到了很坑的事情。前台一直报错:SyntaxError: missing ; before statement最后发现解决办法是eval("("+s+")") 阅读全文
posted @ 2014-04-12 16:49 莫见笑 阅读(1154) 评论(0) 推荐(0) 编辑

摘要: 一般保存在数据库中的日期精度很高,比如'2014-04-15 16:31:22.000'而一般用户选择的时间精度是精确到日的,比如'2012-04-15'所以你想取出两个日期之间的数据,如果用下面的语句select * from your_table where date_field between '2014-04-15' AND '2014-04-15'其实系统会转化为select * from your_table where date_field between '2014-04-15 00:00:00.000&# 阅读全文
posted @ 2014-04-12 11:04 莫见笑 阅读(4880) 评论(0) 推荐(0) 编辑