數(shù)據(jù)庫(kù)中using的用法
數(shù)據(jù)庫(kù)中using的用法
數(shù)據(jù)庫(kù)中using的用法的用法你知道嗎?下面小編就跟你們?cè)敿?xì)介紹下數(shù)據(jù)庫(kù)中using的用法的用法,希望對(duì)你們有用。
數(shù)據(jù)庫(kù)中using的用法的用法如下:
使用using關(guān)鍵字對(duì)連接進(jìn)行簡(jiǎn)化
在SQL/92標(biāo)準(zhǔn)可以使用USING子句對(duì)連接條件進(jìn)行簡(jiǎn)化,但是只有在查詢(xún)滿足以下兩個(gè)條件時(shí)才能給使用USING進(jìn)行簡(jiǎn)化:
1、查詢(xún)必須是等連接的
2、等連接中的列必須是同名
如:商品表goods表和商品類(lèi)型表category表中g(shù)oods的外鍵和category的主鍵相同:categoryid而且是等連接,這里可以使用using
[sql]
select goodsname,categoryname
from goods inner join category
using(categoryid)
在使用using是需要注意以下幾個(gè)問(wèn)題
1、在select子句中只能指定該列名,不能使用表名或別名
2、在using子句中也只能單獨(dú)使用列名
對(duì)于多與兩個(gè)表的連接,先看這個(gè)例子
[sql]
select c.firstName,c.lastName,p.product_name ,pt.product_types_name
from customers c,purchase pr,products p,product_types pt
where c.customer_id=pr.customer_id www.2cto.com
and p.products_id = pr.products_id
and p.product_types_id=pt.product_types_id;
使用using對(duì)上面的sql語(yǔ)句進(jìn)行重寫(xiě)
[sql]
select c.first_name,c.last_name,p.products_name as product,pt.product_types_name as typesname
from customers c inner join purchases pr
using(customers_id)
inner join products p
using(products_id)
inner join product_types pt
using(product_types_id);