MYSQL查询一周内的数据(最近7天的)的方法
这个方法是在网上找到的,因为在lofter山寨计划中写到一个功能块的时候需要用到这种查询方法,所以skidu将它记录下来
查询一天:
select * from table where to_days(column_time) = to_days(now());
select * from table where date(column_time) = curdate();
这个方法是在网上找到的,因为在lofter山寨计划中写到一个功能块的时候需要用到这种查询方法,所以skidu将它记录下来
查询一天:
select * from table where to_days(column_time) = to_days(now());
select * from table where date(column_time) = curdate();
今天在百度知道看见有人在问怎么用正则匹配出一个网页中的表格,我想都没想就直接丢了个 /<table.*</table>/
上去,结果发现这个表达式是错误的囧tz
几经折腾,终于让我给搞出来了~~
/<table.*>[^{]*?</table>/sm
百试不爽哦亲(至少目前还没发现问题)~~ :woo: