1樓:匿名使用者
select convert(char(2),month(訪問時間))+','+convert(char(2),day(訪問時間))+'的訪問量' ,convert(char(10),count(id))+'次的訪問量'
from 表名
where 訪問時間》=dateadd(month,-1,getdate())
group by 訪問時間
order by 訪問時間
dateadd(month,-1,getdate())當前系統時間減去1個月
2樓:百麗佳人
sql="select count(id) from table where 訪問時間
日統計sql="select count(id) from table where 訪問時間 group by 訪問時間 order by 訪問時間 desc"
3樓:匿名使用者
select 訪問時間 + ' 的訪問量 ' + count(*)from 表
where 訪問時間 > dateadd(month, - 1, getdate())
and訪問時間 < getdate()
group by 訪問時間
sql語句 急,求sql語法
同意上面的思路,不過應該寫成這樣 select year,sum case when month 1 then amount else 0 end as m1,sum case when month 2 then amount else 0 end as m2,sum case when month...
求SQL語句,求一個SQL語句
select from table name where 部門 工程部 and 經理簽字 0 and 行政簽字 0 and 結單 0 union all select from table name where 部門 工程部 and 經理簽字 1 and 行政簽字 0 and 結單 0 select...
sql語句求大神幫助,SQL查詢語句,求大神幫助!
大概明白你的意思。如果你的資料只有三層,並且只是你sql限定的這些資料好辦。select t3.mc,t2.mc t1.mc,t1.from select from sys zdinfo where plsh 2012070900000068 and plsh 2012070900000072 t1...