mysql中怎么查询一周内,三个月内,半年内的数据?

mysql中怎么查询一周内,三个月内,半年内的数据?,第1张

mysql中怎么查询一周内,三个月内\x0d\x0a使用sql语句查询日期在一周内的数据\x0d\x0aselect * from ShopOrder where datediff(week,ordTime,getdate()-1)=0 //查询当天日期在一周年的数据\x0d\x0aselect * from ShopOrder where datediff(day,ordTime,getdate()-1)=0 //查询当天的所有数据\x0d\x0a SELECT * FROM A where datediff(d,datetime,getdate()) 回答于 2022-12-11

if

(mysql_connect('localhost','root','root')){

$query

=

"select

count(aid)

as

ct

from

table

group

by

aid"//

从数据库中读取数据

,count出来加了别名ct用来获取数据时标示字段名用

if

($result=@mysql_query($query)){

while($rows=@mysql_fetch_array($result))

{

$rows[ct]//这里循环处理每一行ct字段的值

}

mysql_free_result($result)

select * from 表名 where 日期字段>=date_sub(now(), interval 60 day) and 日期字段<=date_sub(now(), interval 30 day)


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/7463353.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-04-06
下一篇 2023-04-06

发表评论

登录后才能评论

评论列表(0条)

保存