⑴ 怎樣一條sql語句統計該年每月的數據個數
selectcount(1)as[數據個數],
convert(varchar(4),year([日期數據]))+'-'+convert(varchar(4),month([日期數據]))from[table]
groupbyconvert(varchar(4),year([日期數據]))+'-'+convert(varchar(4),month([日期數據]))
⑵ mysql 統計每月的數量 sql
數據表中不存在的月份也要顯示,建議創建一個從1到12月份的表作為比對表。如果不方便創建月份比對表則可以用select 1到12的辦法來虛擬這個月份比對表,但是語句會有些冗長。請參考下列寫法:
selectmonths.year,months.month,
concat(ifnull(t.sumMonthNum,'0'),
'/',months.sumYearNum)as`月/年比`
from
(select*from
(selectyear(time)asyear,
sum(num)assumYearNum
fromabcgroupbyyear(time))years,
(select1asmonthunionall
select2unionall
select3unionall
select4unionall
select5unionall
select6unionall
select7unionall
select8unionall
select9unionall
select10unionall
select11unionall
select12)months)monthsleftjoin
(selectyear(time)asyear,
month(time)asmonth,
sum(num)assumMonthNum
fromabcgroupbyyear(time),month(time))t
onmonths.month=t.month
orderbymonths.year,months.month;
實驗截圖如下:
源表數據
⑶ 怎樣用SQL語句表示每個月統計並輸出2006年每個月份的圖書借出的冊數
1. 求總藏書量、藏書總金額,總庫存冊數、最高價、最低價。
select count(圖書編號) as 總藏書量,
sum(定價) as 藏書總金額,
sum(實際數量) as 總庫存冊數,
max(定價) as 最高價,
min(定價) as 最低價
from 圖書卡片
go
2. 列出藏書在10本以上的書(書名、作者、出版社、年份)。
select 圖書名稱,作者姓名,出版社,出版日期
from 圖書卡片
group by 圖書編號 having(coung(1)>10)
order by 圖書名稱
go
3. 哪些出版社的藏書種類數超過100種。
select 出版社 as '藏書種類數超過100種的出版社'
from 圖書卡片
group by 出版社 having(count(類別)>100)
order by 出版社
go
4. 目前實際已借出多少冊書?
select sum(借出數量) as '借出數量'
from 圖書卡片
go
5. 年份最久遠的書。
select top 1 with ties 圖書名稱 from 圖書卡片
order by 出版日期
go
6. 「資料庫系統原理教程,王珊編,清華大學出版社,1998年出版」還有幾本?
select count(1) from 圖書卡片
where concaints(摘要,'"資料庫系統原理教程,王珊編,清華大學出版社,1998年出版"')
go
7. 哪一年的圖書最多?
select top 1 with ties convert(substring(出版日期,1,4)) as 年份,count(1) as '圖書數量'
from 圖書卡片
group by 出版日期
order by 圖書數量 desc
go
8. 哪本借書證未歸還的圖書最多?
select top 1 with ties A.讀者編號,count(1) as '借書數量'
from 圖書卡片 A,借閱 B
where A.圖書編號=B.圖書編號
group by A.讀者編號
order by 借書數量 desc
go
9、平均每本借書證的借書冊數。
select avg(借閱數量) as '平均每本借書證的借書冊數'
from 借閱
go
10.哪個系的同學平均借書冊數最多?
select top 1 with ties A.工作單位,avg(借閱數量) as '平均借閱數量'
from 讀者 A,借閱 B
where A.讀者編號=B.讀者編號
group by A.工作單位
order by 平均借閱數量' desc
go
11. 最近兩年都未被借過的書。
select 圖書名稱
from 圖書卡片
where 圖書編號 in(select 圖書編號 from 借閱 where datediff(year,借閱日期,getdate())>2)
go
12. 列出那些借了圖書逾期未歸還的借書證號和圖書名。
select A.讀者編號 as '借書證號',B.圖書名稱
from 讀者 as A inner join 圖書卡片 as B on A.圖書編號=B.圖書編號
where A.應歸還日期<getdate() and A.實際歸還日期 is null
go
13.今年未借過書的借書證。
select 讀者編號
from 讀者
where 讀者編號 not in(select 讀者編號
from 讀者
where datediff(year,借閱日期,getdate())=0)
go
14. 今年那種書出借最多?
select top 1 with ties A.類別,count(1) as '借出數量'
from 圖書卡片 A,借閱 B
where datediff(year,B.借閱日期,getdate())=0
group by A.類別
order by 借出數量' desc
go
⑷ sql題 如何統計查詢一個月中每天的記錄
1、查詢當天的所有數據
結構化查詢語言(Structured Query Language)簡稱SQL,是一種特殊目的的編程語言,是一種資料庫查詢和程序設計語言,用於存取數據以及查詢、更新和管理關系資料庫系統。結構化查詢語言是高級的非過程化編程語言,允許用戶在高層數據結構上工作。
它不要求用戶指定對數據的存放方法,也不需要用戶了解具體的數據存放方式,所以具有完全不同底層結構的不同資料庫系統, 可以使用相同的結構化查詢語言作為數據輸入與管理的介面。
⑸ mysql 按月份統計,sql 語句怎麼寫!
⑹ SQL 計算月累計的兩個方法
Part1:求累加和
-- 方法一:sum() over函數
select month_id,sum(num) over(order by month_id)
from public.test_sum_over;
-- 方法二:列子查詢
select month_id
,(select sum(num) from public.test_sum_over t2 where t2.month_id<=t1.month_id)
from public.test_sum_over t1
⑺ sql 語句怎麼寫根據選擇的年份統計出該年下每個月的訂單總數
這是一些統計每天、每月、每年的銷售總額的查詢語句,給你參考:
1、每年
select year(ordertime) 年,
sum(Total) 銷售合計
from 訂單表
group by year(ordertime)
2、每月
select year(ordertime) 年,
month(ordertime) 月,
sum(Total) 銷售合計
from 訂單表
group by year(ordertime),
month(ordertime
3、每日
select year(ordertime) 年,
month(ordertime) 月,
day(ordertime) 日,
sum(Total) 銷售合計
from 訂單表
group by year(ordertime),
month(ordertime),
day(ordertime)
另外每日也可以這樣:
select convert(char(8),ordertime,112) dt,
sum(Total) 銷售合計
from 訂單表
group by convert(char(8),ordertime,112)
如果需要增加查詢條件,在from後加where 即可。