是要張三的英語成績?
創(chuàng)新互聯(lián)堅持網(wǎng)頁設計,我們不會倒閉、轉(zhuǎn)行,已經(jīng)持續(xù)穩(wěn)定運營十年。專業(yè)網(wǎng)站制作公司技術(shù),豐富的成功經(jīng)驗和創(chuàng)作思維,提供一站式互聯(lián)網(wǎng)解決方案,攜手廣大客戶,共同發(fā)展進步。我們不僅會設計網(wǎng)站,更會成都全網(wǎng)營銷推廣。幫助中小型企業(yè)在“互聯(lián)網(wǎng)+"的時代里通過推廣營銷傳播路線轉(zhuǎn)型升級,累計幫助多家客戶實現(xiàn)網(wǎng)絡營銷化,與我們一起攜手共創(chuàng)未來!
如果兩張表的結(jié)構(gòu)一樣的話可以這樣試一下
select * from 2009-sutdent where name like '%張三%' and career like '%英語%'
union
select * from 2011-sutdent where name like '%張三%' and career like '%英語%'
表之間有關(guān)聯(lián)關(guān)系嗎,有的話 就 join 啊,查詢的時候 每張表做不同的別名,比如a,b,c
查詢的時候就
select
a.age,
b.age,
c.age from table1 as a
join table2 as b on a.xxx=b.xxx
join table3 as c on a.xxx=c.xxx
where xxxxxx
select * from 表名 where match_id in (select match_id from 表名 where team_id='a' or team_id='b' group by match_id)
實現(xiàn)的方法非常多,包括內(nèi)連接、左連接、右連接、自然連接、非指定連接類型的連接,in關(guān)鍵字子查詢、帶比較符的子查詢、exists關(guān)鍵字子查詢、any關(guān)鍵字子查詢、all關(guān)鍵字子查詢、獨立子查詢、父子連接子查詢等。由于內(nèi)容繁雜,詳細這里無法展開。
下面舉例兩表通過字段'學號"關(guān)聯(lián)查出張三同學的的各科成績
表結(jié)構(gòu)如下
students(sid,sname)
scores(sid,cid,grade)
SQL查詢語句
select a.sid,a.sname,b.cid,b.grade
from students a inner join
scores b on a.sid=b.sid
where a.name='張三';