5 lines
191 B
SQL
5 lines
191 B
SQL
select left(convert(varchar,dts,120),7) datewhen,count(*) howmany
|
|
from contents
|
|
where dts>'August 30 2013'
|
|
group by left(convert(varchar,dts,120),7)
|
|
order by left(convert(varchar,dts,120),7) |