Maison > base de données > tutoriel mysql > NorthWind数据库

NorthWind数据库

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
Libérer: 2016-06-07 16:02:30
original
2720 Les gens l'ont consulté

NorthWind 数据库 Categories:产品类别;Customers:客户;Employees:雇员Employees Territories:员工涉及领域Order Details:订单明细Orders:订单Products:产品Region:地区Shippers:运货商Suppliers:供应商TerritZ喎?http://www.2cto.com/kf/ware/vc/"

NorthWind 数据库

\
Categories:产品类别;Customers:客户;Employees:雇员Employees Territories:员工涉及领域Order Details:订单明细Orders:订单Products:产品Region:地区Shippers:运货商Suppliers:供应商TerritZ喎?http://www.2cto.com/kf/ware/vc/" target="_blank" class="keylink">vcmllc6O6tdjT8goKICAgICAgICDU2k5vcnRoV2luZMr9vt2/4tbQtLS9qLnYz7XNvKO6CjxpbWcgc3JjPQ=="http://www.2cto.com/uploadfile/Collfiles/20140909/2014090909090740.jpg" alt="\">
下面进行几次查询了解数据内容:
select productid,productname,unitprice from Products
where UnitPrice>49
Copier après la connexion
查询结果: \
select productid,productname,UnitsInStock,UnitsOnOrder
 from Products where UnitsInStock<UnitsOnOrder
Copier après la connexion
查询结果: \
select * from Products
where ProductName=&#39;Aniseed Syrup&#39; or ProductName=&#39;Ipoh Coffee&#39;
Copier après la connexion
select * from Products
where ProductName in(&#39;Aniseed Syrup&#39;,&#39;Ipoh Coffee&#39;)
Copier après la connexion
查询结果:
\
select * from Products
where SupplierID=CategoryID
Copier après la connexion
查询结果: \
select SupplierID,CompanyName,Phone,Fax from Suppliers
where Phone is not null and fax is null
Copier après la connexion
\
select * from Suppliers
order by City  desc
Copier après la connexion
\
select SupplierID,CompanyName,Country from Suppliers
where Country in(&#39;USA&#39;,&#39;UK&#39;,&#39;Germany&#39;)
Copier après la connexion
\
select SupplierID,CompanyName,ContactTitle,Phone 
from Suppliers
where  ContactTitle=&#39;Marketing Manager&#39; and Phone is not null
Copier après la connexion
\
select distinct ShipVia from Orders
Copier après la connexion
\
select distinct ShipCity from Orders
Copier après la connexion
\
select OrderID,ShippedDate,RequiredDate from Orders
where ShippedDate>RequiredDate
Copier après la connexion
\
select OrderID,CustomerID,Freight from Orders
where Freight<55
Copier après la connexion
\
select * from Categories
where CategoryName like &#39;_e%&#39;
Copier après la connexion
\
select * from Categories
where Description like &#39;%sweet%&#39;
Copier après la connexion

Étiquettes associées:
source:php.cn
Déclaration de ce site Web
Le contenu de cet article est volontairement contribué par les internautes et les droits d'auteur appartiennent à l'auteur original. Ce site n'assume aucune responsabilité légale correspondante. Si vous trouvez un contenu suspecté de plagiat ou de contrefaçon, veuillez contacter admin@php.cn
Tutoriels populaires
Plus>
Derniers téléchargements
Plus>
effets Web
Code source du site Web
Matériel du site Web
Modèle frontal