Sql入門 DQL語言

2021-07-03 12:17:00 字數 446 閱讀 2936

一、select語句

select [ *| distinct column1,column2 ] from table [ where ] [ order by ];
distinct:去除結果的重複行

and:並且

or:或

注意;(1)order by子句裡的字段可以縮寫為乙個整數,表示欄位在關鍵字select之後的列表的位置。

例如:

select * from user order by 2;
等價於

select * from user order by name;
(2)在資料庫中大小寫敏感會直接影響資料的一致性。就目前而言,在sql的不同實現中,並不統一。

相同的資料,可能由於大小寫問題而導致無法查出所期望的結果。

SQL語言之DQL部分 PART1

select department id as dashabia from hr.departments 別名的使用,從hr使用者下查詢departments表,將department id命名為dashabia並列出 select last name job id as employees fro...

DQL語言 排序查詢

查詢員工資訊,要求工資從高到低排序,使用order by 降序select from employees order by salary desc 公升序 select from employees order by salary asc 注意 如果不寫,預設是公升序 查詢部門編號 90的員工資訊,...

DQL語言的查詢

分類 一 按條件表示式篩選 條件運算子 二 按邏輯表示式篩選 邏輯運算子 and or not 三 模糊查詢 like between and in is null或is not null 語法 select 查詢列表 3 from 表名 1 where 條件 2eg 1 查詢工資大於10000的員...