首先你的starttime是什么類型的,數(shù)字?字符?還是時間?
成都創(chuàng)新互聯(lián)公司主營連云網(wǎng)站建設(shè)的網(wǎng)絡(luò)公司,主營網(wǎng)站建設(shè)方案,成都App定制開發(fā),連云h5小程序開發(fā)搭建,連云網(wǎng)站營銷推廣歡迎連云等地區(qū)企業(yè)咨詢
要出來08:00-08:30這種結(jié)果簡單,只要查詢的時候加一個關(guān)聯(lián)就可以,
比如select starttime||'-'||endtime from table.當(dāng)然試過是時間的字段類型,比如date什么的,那就轉(zhuǎn)換成字符型的,反正現(xiàn)在看來主要是字符型。
再說分組,分組可以用case when手動分組。
按照你給的圖片個人覺得可以這么分
select case when starttime=0800 and endtime=10:00 then 1
when starttime=0900 and endtime=12:00 then 2
when starttime=1330 and endtime=15:30 then 3
when starttime=1530 and endtime=17:30 then 4
end 分組, starttime||'-'||endtime from table
這個語句中的具體寫法,可能會因?yàn)閿?shù)據(jù)類型的原因什么的,導(dǎo)致語句不能直接用,需要轉(zhuǎn)換一下數(shù)據(jù)類型,但是大體上的意思和寫法就是這樣了。
以NO字段為主,進(jìn)行分組。
select a.no,sum(a.金額) from table a group by a.no
同一個NO,會對應(yīng)不同的姓名。
select a.no,a.姓名,sum(a.金額) from table a group by a.no,a.姓名
看不懂
目標(biāo)語句:當(dāng)收費(fèi)醒目包含‘鹽’這一項(xiàng),則統(tǒng)計(jì)no='10' 且 姓名=‘張三’,所有收費(fèi)項(xiàng)目對...
select a.項(xiàng)目,sum(a.金額) from table a where a.收費(fèi)項(xiàng)目= '1' and a.no = '10' and a.姓名=‘張三’ group by a.項(xiàng)目
首先按照2列進(jìn)行排序,相同的作為一組,比如:
按性別和所在系分組后: