主頁 > 知識庫 > 常用SQL語句查詢分享

常用SQL語句查詢分享

熱門標(biāo)簽:臺灣外呼系統(tǒng)軟件 地圖標(biāo)注跑線下市場 濮陽清豐400開頭的電話申請 南京怎么申請400這種電話 地圖標(biāo)注可以編輯地名嗎 疫情時期電話機(jī)器人 南通智能外呼系統(tǒng)怎么樣 真3地圖標(biāo)注 樂昌電話機(jī)器人

--創(chuàng)建數(shù)據(jù)庫(文件:主要數(shù)據(jù)文件mdf==1,次要數(shù)據(jù)文件ndf>=0,日志文件ldf>=1)
--文件組:當(dāng)1mdf,5個ndf(1,2,2),10個ldf(3,3,4),將它們分成多個組存放

CREATE database studb;

--創(chuàng)建表teacher,student

create table teacher
(
tid int(10) primary key auto_increment,
tname varchar(20),
tage int(10)
);
use studb;
create table student
(
sid int(10) primary key auto_increment,
sname varchar(20),
sage int(10),
tid int(10) REFERENCES teacher(tid) 
);

--外鍵約束:你問張三的老師是誰??

--select teacher.tname from teacher,student where student.sname = '張三'
select t.tname from teacher t,student s where s.sname = '張三' and t.tid = s.tid

--創(chuàng)建課程表

create table course
(
cid int(10) primary key,
cname varchar(20),
tid int(10) REFERENCES teacher(tid)
);

--創(chuàng)建分?jǐn)?shù)表

create table sc
(
scid int(10) primary key,
sid int(10) REFERENCES student(sid),
cid int(10) REFERENCES course(cid),
score int(10)
);

--聯(lián)合查詢:等值查詢
--1..

select c.cname from course c,student s,sc where s.sname = '小張' 
and s.sid = sc.sid and c.cid = sc.cid;

--2..

select sname from student s,course c,sc where c.cname='android' and sc.score>=60
and s.sid = sc.sid and c.cid = sc.cid;

--3..
--子查詢:當(dāng)條件也要查詢的時候,我只知道學(xué)號,我不知道"小張"這個字段,那你知道小張的學(xué)號 嗎

delete from sc where sid = (select sid from student where sname = '小張'); 

--子查詢中間的符號一定是父查詢與子查詢兩張表關(guān)聯(lián)的字段(一般是主外鍵)

--4..

update sc set score=score+5 where cid=????;

select tid from teacher where tname='李老師' ==1
select cname from course where tid = 1 ==課程名字,李老師教的
select cid from course where cname='android' ==課程ID
update sc set score=score+5 where cid=
(
select cid from course where cname=
(
select cname from course where tid =
(
select tid from teacher where tname='李老師'
)
)
);

您可能感興趣的文章:
  • SQL查詢語句通配符與ACCESS模糊查詢like的解決方法
  • SQL Server SQL高級查詢語句小結(jié)
  • SQLSERVER查詢所有數(shù)據(jù)庫名,表名,和字段名的語句
  • mysql like查詢字符串示例語句
  • MySql日期查詢語句詳解
  • mysql分頁原理和高效率的mysql分頁查詢語句
  • 用SQL語句查詢數(shù)據(jù)庫中某一字段下相同值的記錄方法
  • 只有兩個字段用一個sql語句查詢出某個學(xué)生的姓名、成績以及在表中的排名

標(biāo)簽:福建 通遼 馬鞍山 河北 廣安 南京 阿里 陜西

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《常用SQL語句查詢分享》,本文關(guān)鍵詞  常用,SQL,語句,查詢,分享,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請?zhí)峁┫嚓P(guān)信息告之我們,我們將及時溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《常用SQL語句查詢分享》相關(guān)的同類信息!
  • 本頁收集關(guān)于常用SQL語句查詢分享的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章