(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)欢迎分享,转载请注明来源:内存溢出
评论列表(0条)