This commit is contained in:
2023-05-09 18:21:47 +00:00
parent dc9eca0953
commit 3dd59e20d8
118 changed files with 12010 additions and 0 deletions

View File

@@ -0,0 +1,5 @@
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)