sql基礎查詢

2021-06-21 05:05:23 字數 2769 閱讀 6803

1.查詢

northwind

資料庫employees

表中名以

a開頭的雇員的姓名。

use northwind

goselect firstname,lastname from employees where firstname like 'a%'

go

2.使用演示指令碼建立表、插入資料,查詢以『

x%』開頭的資料。

--建表

create table test(col varchar(10))

--插入資料

insert into test values('x_yz')

insert into test values('[xyz]')

insert into test values('x%yz')

insert into test values('xyz')

--使用轉義符

select col 

from test

where col like 'x\%

%'escape '\'

3.按年齡的從小到大查詢

northwind

資料庫employees

表所有雇員的姓名

use northwind

goselect firstname,lastname from employees

order by birthdate asc

4.查詢

northwinds

資料庫order details

表中的產品號、產品單價,數量以及總價值,並給總價值列指定列名

』total_value』。

use northwind

goselect productid, unitprice, quantity, unitprice*quantity as 'total_value'

from [order details]

go

5.查詢

northwinds

資料庫order details

表中總價值前三位的產品的產品號,總價值。

use northwind

goselect top 3 productid, unitprice, quantity, unitprice*quantity as 'total_value' 

from [order details]

order by 'total_value' desc

go

6.查詢

pubs

資料庫中

titles

表,查詢**小於

15,大於

20的書的書號,種類,**。(使用兩種方法)

use pubs

goselect title_id, title, type, price

from titles 

where

price not between 15 and 20

go

use pubs

goselect title_id, title, type, price

from titles 

where

price 

<15 or price > 20

go

7.查詢

pubs

資料庫中

titles

表,**在

10-20

美元之間且種類為

business

或popular_comp

的所有圖書。(兩種方法)

use pubs

goselect title_id, title, type, price

from titles 

where 

(price between 10 and 20

)and 

(type ='business' or type ='popular_comp')

go

use pubs

goselect title_id, title, type, price

from titles 

where 

(price 

>=

10 and 

price 

<=20)

and 

(type ='business' or type ='popular_comp')

go

8.查詢

northwinds

資料庫中的

suppliers

表,給出**商主要來自哪些國家(去除重複的記錄),並對結果按照字母順序(從a到

z)排序。

use northwind

goselect distinct country from suppliers order by country

go

9.查詢

northwinds

資料庫中的

suppliers

表,給出所有以公司名

』new

』開頭,且公司所在城市為boston

的公司名,公司位址。

use northwind

goselect companyname,city 

from suppliers

where companyname like 'new%' and city = 'boston'

**至微博

**至微博

sql基礎 sql連線查詢

這兩天在專案中寫連線查詢的時候突然回憶了一下各種連線查詢的語法 結果等,發現自己出了經常用的left join on 和等值連線以外其他的都不是很確定,於是乎就看看了相關的資料便有了這篇博文。sql 92標準所定義的from子句的連線語法格式為 fromjoin tablejoin typejoin...

SQL學習 查詢基礎

簡單查詢 1 查詢表的全部行和列 例1 select user qq,user name,user from users 例2 select from users 2 查詢表的部分列 例 select user qq from users 3 使用別名 例 select user qq as 玩家q...

SQL的基礎查詢

select from 表名select 列名 from 表名select 列名 from 表名 where 列名 值 查詢所有符合條件的資訊 可以使用關係運算子進行查詢select 列名 as 別名,列名 as 別名 from 表名示列select sname as 姓名,sage as 年齡,a...