1、創(chuàng)建測試表,
成都創(chuàng)新互聯(lián)公司是創(chuàng)新、創(chuàng)意、研發(fā)型一體的綜合型網(wǎng)站建設(shè)公司,自成立以來公司不斷探索創(chuàng)新,始終堅持為客戶提供滿意周到的服務,在本地打下了良好的口碑,在過去的10年時間我們累計服務了上千家以及全國政企客戶,如成都戶外休閑椅等企業(yè)單位,完善的項目管理流程,嚴格把控項目進度與質(zhì)量監(jiān)控加上過硬的技術(shù)實力獲得客戶的一致贊揚。
create table test_stu(id number,? u_name varchar2(20), subject varchar2(20));
create table test_subj(id number,? subject varchar2(20));
2、插入測試數(shù)據(jù)
insert into test_stu values(1,'張三','英語');
insert into test_stu values(2,'李四','德語');
insert into test_stu values(3,'王五','日語');
insert into test_stu values(4,'小明','英語');
insert into test_stu values(5,'小狗','法語');
insert into test_subj values(1,'英語');
insert into test_subj values(2,'德語');
insert into test_subj values(3,'日語');
insert into test_subj values(4,'法語');
3、查詢表中所有記錄數(shù),select t.*, rowid from test_subj t,
4、編寫sql,統(tǒng)計test_subj總記錄數(shù),及每個科目選修學生數(shù);
select count(distinct t.id) as "小計",
?count(case when subject='英語' then 1 end) as "英語",
?count(case when subject='德語' then 1 end) as "德語",
?count(case when subject='日語' then 1 end) as "日語"
from (select t.*
from test_subj t, test_stu b
where t.subject = b.subject) t
你看看這個吧,sqlserver寫法
自己也粘貼一下
創(chuàng)建表數(shù)據(jù)
create?table?test
(序號?varchar(2),
班級?varchar(2),
姓名?varchar(10),
語文?int,
數(shù)學?int,
英語?int)
insert?into?test?values?('01','b4','張三',23,87,98)
insert?into?test?values?('02','b1','李四',76,87,56)
insert?into?test?values?('03','b2','王五',56,87,67)
insert?into?test?values?('04','b3','趙六',78,87,65)
insert?into?test?values?('05','b2','啊啊',45,68,89)
insert?into?test?values?('06','b6','說說',65,56,45)
insert?into?test?values?('07','b4','等等',90,54,34)
insert?into?test?values?('08','b5','菲菲',89,76,90)
執(zhí)行
select?
case?when?班級?is?null?then?'總計'?else?班級?end?班級,
case?when?姓名?IS?null?then?'小計'?else?姓名?end?姓名,
sum(語文)?語文,
sum(數(shù)學)?數(shù)學,
sum(英語)?英語
from?test?
group?by?班級,姓名?with?rollup
結(jié)果截圖
樓主好,SQL中建立的基本上都是關(guān)系型數(shù)據(jù)庫,單純的查詢是不能實現(xiàn)單元格合并以及按組小計的。其實實現(xiàn)圖中的功能是需要SSAS來實現(xiàn)的,也就是多維數(shù)據(jù)庫。建立多維數(shù)據(jù)庫后,您圖中的功能就可以在數(shù)據(jù)庫中實現(xiàn)了。SSAS的開發(fā)工具就是你安裝的數(shù)據(jù)庫中除了企業(yè)管理器中,另外一個圖標,商務智能開發(fā)工具。其實是個簡單的VS,可視化的開發(fā)工具。我當前也正在做相關(guān)的工作。其實多維數(shù)據(jù)庫的建立一般不由開發(fā)人員做,歸屬數(shù)據(jù)分析師或者BI工程師來實現(xiàn)的。開發(fā)多維數(shù)據(jù)庫后,可以再集成前端工具,就成了報表系統(tǒng)。有問題可以繼續(xù)追問。
select?case?when?數(shù)據(jù)1=0?then?0?else?數(shù)據(jù)2/數(shù)據(jù)1?end?from?表名
能看懂吧,數(shù)據(jù)1是被除數(shù),數(shù)據(jù)2是除數(shù)
分享題目:sqlserver小計,sqlserver小數(shù)
網(wǎng)頁網(wǎng)址:http://aaarwkj.com/article14/dsisoge.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供ChatGPT、外貿(mào)網(wǎng)站建設(shè)、定制開發(fā)、商城網(wǎng)站、App設(shè)計、虛擬主機
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)