真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

SQL中如何使用DQL查詢語言

SQL中如何使用DQL查詢語言,針對這個問題,這篇文章詳細介紹了相對應的分析和解答,希望可以幫助更多想解決這個問題的小伙伴找到更簡單易行的方法。

創(chuàng)新互聯(lián)公司-專業(yè)網(wǎng)站定制、快速模板網(wǎng)站建設、高性價比杞縣網(wǎng)站開發(fā)、企業(yè)建站全套包干低至880元,成熟完善的模板庫,直接使用。一站式杞縣網(wǎng)站制作公司更省心,省錢,快速模板網(wǎng)站建設找我們,業(yè)務覆蓋杞縣地區(qū)。費用合理售后完善,十余年實體公司更值得信賴。

DQL

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

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

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

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

SELECT * FROM student

(2)查詢表中的所有學生姓名和對應的英語成績

SELECT name,english FROM student

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

(3) 過濾表中重復的math成績

SELECT DISTINCT math FROM student;

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

并隨機增加5條屬性

select * from student;– 查詢英語在70到75之間的學生的信息-- select * from student where english BETWEEN 70 AND 75;– 查詢語文是80或者82或者90分的學生信息-- select * from student where chinese IN(80,82,90);– 查詢所有首字母為l的學生的成績-- select * from student where name like "l%";– 查詢數(shù)學大于80且語文大于80 的同學-- select * from student where math>80 and chinese>90;– 對數(shù)學成績排序后輸出 (默認升序 ASC)-- select * from student order by math;– 對數(shù)學成績排序后輸出(降序 DESC)-- SELECT * FROM student order by math DESC;– 指定多個字段進行排序,先按第一個字段進行排序,如果相同則按第二個字段進行排序  -- 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ōu)先級 not>and>or

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

注:

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

– 關聯(lián)(1對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, -- 進行和customer 關聯(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;

主鍵和唯一標識

unique 唯一性標識

primary key 主鍵 (auto_increment 設置自動增長)-- UNIQUE 表約束 唯一性標識-- 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 唯一性標識);desc t4;insert into t4 (name,gender,idCard) VALUE("zs","man","110");insert into t4 (name,gender,idCard) VALUE("ls","woman","112");

關于SQL中如何使用DQL查詢語言問題的解答就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關注創(chuàng)新互聯(lián)行業(yè)資訊頻道了解更多相關知識。


當前題目:SQL中如何使用DQL查詢語言
轉載源于:http://weahome.cn/article/giojjo.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部