1、創(chuàng)建測(cè)試表,
創(chuàng)新互聯(lián)專注于如東網(wǎng)站建設(shè)服務(wù)及定制,我們擁有豐富的企業(yè)做網(wǎng)站經(jīng)驗(yàn)。 熱誠(chéng)為您提供如東營(yíng)銷型網(wǎng)站建設(shè),如東網(wǎng)站制作、如東網(wǎng)頁設(shè)計(jì)、如東網(wǎng)站官網(wǎng)定制、微信小程序開發(fā)服務(wù),打造如東網(wǎng)絡(luò)公司原創(chuàng)品牌,更為您提供如東網(wǎng)站排名全網(wǎng)營(yíng)銷落地服務(wù)。
create table test_person(id int, RMB int);
2、插入測(cè)試數(shù)據(jù)
insert into test_person values(1,180);
insert into test_person values(2,170);
insert into test_person values(3,290);
insert into test_person values(4,160);
insert into test_person values(5,299);
insert into test_person values(6,266);
insert into test_person values(7,155);
3、查詢表中所有記錄,select t.* from test_person t,
4、編寫sql,匯總每個(gè)vip類型的用戶數(shù),
select vip_type, count(distinct id)
from (select case when RMB100 and RMB200 then 'VIP1' when RMB200 then 'VIP2' end as vip_type, id
? ? from test_person) t
group by vip_type
思路如下,分別將A與B,A與C進(jìn)行關(guān)聯(lián),然后使用 union 進(jìn)行連接,查詢時(shí),直接使用這個(gè)查詢就可以了(可以建個(gè)視圖,查詢起來比較方便 ),如下:
select?d.id,?d.name
from?(select?A.id,?B.name
from?A,?B
where?A.id?=?B.id
and?A.type?=?'教師'
union
select?A.id,?C.name
from?A,?C
where?A.id?=?C.id
and?A.type?=?'教室')?d
where?d.id?=?123
有問題請(qǐng)追問,希望可以幫到你
1、mysql中創(chuàng)建測(cè)試表,create table test_user(id int, name varchar(20));
2、插入測(cè)試數(shù)據(jù),
insert into test_user values(1001,'jack');
insert into test_user values(1002,'lucy');
insert into test_user values(1003,'mike');
insert into test_user values(1004,'john');
insert into test_user values(1005,'may');
3、查看表中所有數(shù)據(jù),select * from test_user
4、編寫sql,查詢name列是否有jack名,
select * from test_user t where name = 'jack'
本文名稱:mysql中怎么寫判斷,sql如何寫判斷
轉(zhuǎn)載注明:http://www.rwnh.cn/article18/dscojdp.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供微信小程序、網(wǎng)站內(nèi)鏈、企業(yè)建站、靜態(tài)網(wǎng)站、小程序開發(fā)、品牌網(wǎng)站制作
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來源: 創(chuàng)新互聯(lián)