單錶查詢操作

2021-09-19 13:13:47 字數 1565 閱讀 1727

1.查詢所有字段(查詢學生資訊表中所有學生資訊)

select

*from

`表名`

;

2.查詢指定字段(查詢學生資訊表中所有學生的 姓名,家庭住址,身份證號)
select

`別名`

as`姓名`

,`別名`

as`身份證號`

,`別名`

as`位址`

from

`表名`

;

3.條件查詢(查詢位址是 泊頭,性別是男的學生資訊)
select

*from

`表名`

where `別名`

='泊頭' and `***`

='男'

;select

*from

`表名`

where

(`別名`

,`別名`)=(

'泊頭'

,'男');

//查詢手機號為空的學員資訊

select

*from

`表名`

where telephone=

'' or `telephone`

is null

;//查詢存在手機號的人員資訊

select

*from

`表名`

where telephone!=

'' and `telephone`

is not null

;

4.查詢學生所屬的位址(去重)
select

distinct

`別名`

from

`表名`

;

5.查詢id是5和8的學生資訊
select

*from

`表名`

where `id`

in(5,

8);

6.查詢id在2–15之間的學員資訊
select

*from

`表名`

where `id`

between 2

and15

;

7.查詢結果中新增常量列(學校 是 泊頭職業學院)
select

* ,'泊頭職業學院'

as'學校'

from

`表名`

;

8.查詢以王開頭的所有學生資訊
select

*from

`表名`

where `別名`

like '王%'

;//查詢名字中帶帥的學員資訊

select

*from

`表名`

where `別名`

like '%帥%'

;//查詢泊開頭的兩個泊_學院資訊

select

*from

`表名`

where `別名`

like '泊_'

;

單錶查詢 LINQ to DataSet

fill the dataset.dataset ds new dataset ds.locale cultureinfo.invariantculture filldataset ds datatable orders ds.tables salesorderheader var query fr...

ORACLE單錶查詢

介紹 oracle資料庫系統是美國oracle公司 甲骨文 提供的以分布式資料庫為核心的一組軟體產品,oracle有很多種查詢方法,現在我來教大家一些簡單的條件查詢 第一種 較為精準的查詢 我要從oracle資料庫中查詢姓king名字為steven的人 select from employees w...

MySQL 單錶查詢

1 基本資料記錄查詢 列出表的所有字段 select field1,field2.fieldn from tablename 2 符號的使用 select from tablename 其中,符號 表示所有欄位名 tablename 引數表示表的名稱。3 條件資料記錄查詢 select field1...