溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

SQL中DQL查詢語(yǔ)言的示例分析

發(fā)布時(shí)間:2021-07-30 11:27:53 來(lái)源:億速云 閱讀:165 作者:小新 欄目:數(shù)據(jù)庫(kù)

這篇文章將為大家詳細(xì)講解有關(guān)SQL中DQL查詢語(yǔ)言的示例分析,小編覺(jué)得挺實(shí)用的,因此分享給大家做個(gè)參考,希望大家閱讀完這篇文章后可以有所收獲。

DQL

DQL:data Query language 數(shù)據(jù)查詢語(yǔ)言

格式:select[distinct] 字段1,字段2 from 表名 where 控制條件

(distinct: 顯示結(jié)果時(shí),是否去除重復(fù)列 給哪一列去重就在哪一列字段前加入distinct)
學(xué)生表

(1)查詢表中的所有信息

SELECT * FROM student

(2)查詢表中的所有學(xué)生姓名和對(duì)應(yīng)的英語(yǔ)成績(jī)

SELECT name,english FROM student

注:可顯示部分字段,如果顯示哪列數(shù)據(jù),就直接寫(xiě)字段名稱即可

(3) 過(guò)濾表中重復(fù)的math成績(jī)

SELECT DISTINCT math FROM student;

(4) 創(chuàng)建一個(gè)student類(lèi) 添加屬性id,name,sex,chinese,English,math

并隨機(jī)增加5條屬性

SQL中DQL查詢語(yǔ)言的示例分析

select * from student;
– 查詢英語(yǔ)在70到75之間的學(xué)生的信息
-- select * from student where english BETWEEN 70 AND 75;

– 查詢語(yǔ)文是80或者82或者90分的學(xué)生信息
-- select * from student where chinese IN(80,82,90);

– 查詢所有首字母為l的學(xué)生的成績(jī)
-- select * from student where name like "l%";

– 查詢數(shù)學(xué)大于80且語(yǔ)文大于80 的同學(xué)
-- select * from student where math>80 and chinese>90;

– 對(duì)數(shù)學(xué)成績(jī)排序后輸出 (默認(rèn)升序 ASC)
-- select * from student order by math;

– 對(duì)數(shù)學(xué)成績(jī)排序后輸出(降序 DESC)
-- SELECT * FROM student order by math DESC;

– 指定多個(gè)字段進(jìn)行排序,先按第一個(gè)字段進(jìn)行排序,如果相同則按第二個(gè)字段進(jìn)行排序
  -- SELECT * FROM student ORDER BY math DESC,chinese DESC;

– WHERE后可以加 ORDER BY
-- SELECT * from student where name like "%l" ORDER BY math DESC;

– 顯示student 表格中的前3行
SELECT * from student LIMIT 2;

– 顯示student 表格中的第3~5行
SELECT * from student LIMIT 2,3; -- 2表示偏移量,3表示顯示的行數(shù)

附錄:①在where中經(jīng)常使用的運(yùn)算符

SQL中DQL查詢語(yǔ)言的示例分析

注:邏輯運(yùn)算符優(yōu)先級(jí) not>and>or

*②select |{column1|expression、column2|expression,…}from table;
select column as 別名 from table;

注:

expression : mysql支持表達(dá)式 加減乘除;
as: 表示給某一列起別名;并且as 可以省略;

– 關(guān)聯(lián)(1對(duì)N)

create table customer(
 id int PRIMARY KEY auto_increment,
 name varchar (20) not null,
 adress varchar (20) not null
);
create table orders(
 order_num varchar(20) PRIMARY KEY,
 price FLOAT not NULL,
 customer_id int, -- 進(jìn)行和customer 關(guān)聯(lián)的字段 外鍵
 constraint cus_ord_fk foreign key (customer_id) REFERENCES customer(id)
);
insert into customer(name,adress) values("zs","北京");
insert into customer(name,adress) values("ls","上海");
SELECT * from customer;
INSERT INTO orders values("010",30.5,1);
INSERT INTO orders values("011",60.5,2);
INSERT INTO orders values("012",120.5,1);
SELECT * from orders;

主鍵和唯一標(biāo)識(shí)

unique 唯一性標(biāo)識(shí)

primary key 主鍵 (auto_increment 設(shè)置自動(dòng)增長(zhǎng))
-- UNIQUE 表約束 唯一性標(biāo)識(shí)
-- PRIMARY KEY 主鍵 
CREATE TABLE t4 (
 id INT PRIMARY KEY auto_increment,
 NAME VARCHAR (20) NOT NULL,
 gender CHAR (5) NOT NULL,
 idCard VARCHAR (20) UNIQUE -- UNIQUE 唯一性標(biāo)識(shí)
);
desc t4;
insert into t4 (name,gender,idCard) VALUE("zs","man","110");
insert into t4 (name,gender,idCard) VALUE("ls","woman","112");

關(guān)于“SQL中DQL查詢語(yǔ)言的示例分析”這篇文章就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,使各位可以學(xué)到更多知識(shí),如果覺(jué)得文章不錯(cuò),請(qǐng)把它分享出去讓更多的人看到。

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI