Difference between revisions of "Sales.vIndividualCustomer (view)"
(New page: == wikibot == {| border="1" cellpadding="5" cellspacing="0" style="border-collapse:collapse" |- | '''view | Sales.vIndividualCustomer |- |} <pre> CREATE VIEW [Sales].[vIndividualCustomer...) |
|||
| (7 intermediate revisions by the same user not shown) | |||
| Line 1: | Line 1: | ||
== wikibot == | == wikibot == | ||
| + | |||
| + | {| border="1" cellpadding="5" cellspacing="0" style="border-collapse:collapse" | ||
| + | |- valign="top" | ||
| + | | '''View | ||
| + | | Sales.vIndividualCustomer | ||
| + | |- valign="top" | ||
| + | | '''Description | ||
| + | | Individual customers (names and addresses) that purchase Adventure Works Cycles products online. | ||
| + | |} | ||
| + | |||
| + | === Source === | ||
| + | <pre> | ||
| + | CREATE VIEW [Sales].[vIndividualCustomer] | ||
| + | AS | ||
| + | SELECT | ||
| + | i.[CustomerID] | ||
| + | ,c.[Title] | ||
| + | ,c.[FirstName] | ||
| + | ,c.[MiddleName] | ||
| + | ,c.[LastName] | ||
| + | ,c.[Suffix] | ||
| + | ,c.[Phone] | ||
| + | ,c.[EmailAddress] | ||
| + | ,c.[EmailPromotion] | ||
| + | ,at.[Name] AS [AddressType] | ||
| + | ,a.[AddressLine1] | ||
| + | ,a.[AddressLine2] | ||
| + | ,a.[City] | ||
| + | ,[StateProvinceName] = sp.[Name] | ||
| + | ,a.[PostalCode] | ||
| + | ,[CountryRegionName] = cr.[Name] | ||
| + | ,i.[Demographics] | ||
| + | FROM [Sales].[Individual] i | ||
| + | INNER JOIN [Person].[Contact] c | ||
| + | ON c.[ContactID] = i.[ContactID] | ||
| + | INNER JOIN [Sales].[CustomerAddress] ca | ||
| + | ON ca.[CustomerID] = i.[CustomerID] | ||
| + | INNER JOIN [Person].[Address] a | ||
| + | ON a.[AddressID] = ca.[AddressID] | ||
| + | INNER JOIN [Person].[StateProvince] sp | ||
| + | ON sp.[StateProvinceID] = a.[StateProvinceID] | ||
| + | INNER JOIN [Person].[CountryRegion] cr | ||
| + | ON cr.[CountryRegionCode] = sp.[CountryRegionCode] | ||
| + | INNER JOIN [Person].[AddressType] at | ||
| + | ON ca.[AddressTypeID] = at.[AddressTypeID] | ||
| + | WHERE i.[CustomerID] IN (SELECT [Sales].[Customer].[CustomerID] | ||
| + | FROM [Sales].[Customer] WHERE UPPER([Sales].[Customer].[CustomerType]) = 'I'); | ||
| + | </pre> | ||
| + | |||
| + | === References === | ||
| + | {| border="1" cellpadding="5" cellspacing="0" style="border-collapse:collapse" | ||
| + | |- style="background:silver" | ||
| + | | '''Dependency Type | ||
| + | | '''Object Type | ||
| + | | '''Referenced Object | ||
| + | |||
| + | |- valign="top" | ||
| + | | Select | ||
| + | | Table | ||
| + | | [[Person.Address_(table)|Person.Address]] | ||
| + | |||
| + | |- valign="top" | ||
| + | | Select | ||
| + | | Table | ||
| + | | [[Person.AddressType_(table)|Person.AddressType]] | ||
| + | |||
| + | |- valign="top" | ||
| + | | Select | ||
| + | | Table | ||
| + | | [[Person.Contact_(table)|Person.Contact]] | ||
| + | |||
| + | |- valign="top" | ||
| + | | Select | ||
| + | | Table | ||
| + | | [[Person.CountryRegion_(table)|Person.CountryRegion]] | ||
| + | |||
| + | |- valign="top" | ||
| + | | Select | ||
| + | | Table | ||
| + | | [[Person.StateProvince_(table)|Person.StateProvince]] | ||
| + | |||
| + | |- valign="top" | ||
| + | | Select | ||
| + | | Table | ||
| + | | [[Sales.Customer_(table)|Sales.Customer]] | ||
| + | |||
| + | |- valign="top" | ||
| + | | Select | ||
| + | | Table | ||
| + | | [[Sales.CustomerAddress_(table)|Sales.CustomerAddress]] | ||
| + | |||
| + | |- valign="top" | ||
| + | | Select | ||
| + | | Table | ||
| + | | [[Sales.Individual_(table)|Sales.Individual]] | ||
| + | |||
| + | |- valign="top" | ||
| + | | Schema | ||
| + | | Schema | ||
| + | | [[Sales_(schema)|Sales]] | ||
| + | |||
| + | |} | ||
| + | |||
| + | |||
| + | == automatically generated == | ||
{| border="1" cellpadding="5" cellspacing="0" style="border-collapse:collapse" | {| border="1" cellpadding="5" cellspacing="0" style="border-collapse:collapse" | ||
| Line 5: | Line 110: | ||
| '''view | | '''view | ||
| Sales.vIndividualCustomer | | Sales.vIndividualCustomer | ||
| + | |- valign="top" | ||
| + | | '''Description | ||
| + | | Individual customers (names and addresses) that purchase Adventure Works Cycles products online. | ||
|- | |- | ||
|} | |} | ||
<pre> | <pre> | ||
| + | |||
CREATE VIEW [Sales].[vIndividualCustomer] | CREATE VIEW [Sales].[vIndividualCustomer] | ||
AS | AS | ||
| Line 45: | Line 154: | ||
FROM [Sales].[Customer] WHERE UPPER([Sales].[Customer].[CustomerType]) = 'I'); | FROM [Sales].[Customer] WHERE UPPER([Sales].[Customer].[CustomerType]) = 'I'); | ||
</pre> | </pre> | ||
| + | |||
| + | |||
| + | {| border="1" cellpadding="5" cellspacing="0" style="border-collapse:collapse" | ||
| + | |- style="background:silver" | ||
| + | | '''Dependency Type | ||
| + | | '''Object Type | ||
| + | | '''Referenced Object | ||
| + | |||
| + | |- | ||
| + | | Select | ||
| + | | Table | ||
| + | | [[Person.Address_(table)|Person.Address]] | ||
| + | |||
| + | |- | ||
| + | | Select | ||
| + | | Table | ||
| + | | [[Person.AddressType_(table)|Person.AddressType]] | ||
| + | |||
| + | |- | ||
| + | | Select | ||
| + | | Table | ||
| + | | [[Person.Contact_(table)|Person.Contact]] | ||
| + | |||
| + | |- | ||
| + | | Select | ||
| + | | Table | ||
| + | | [[Person.CountryRegion_(table)|Person.CountryRegion]] | ||
| + | |||
| + | |- | ||
| + | | Select | ||
| + | | Table | ||
| + | | [[Person.StateProvince_(table)|Person.StateProvince]] | ||
| + | |||
| + | |- | ||
| + | | Select | ||
| + | | Table | ||
| + | | [[Sales.Customer_(table)|Sales.Customer]] | ||
| + | |||
| + | |- | ||
| + | | Select | ||
| + | | Table | ||
| + | | [[Sales.CustomerAddress_(table)|Sales.CustomerAddress]] | ||
| + | |||
| + | |- | ||
| + | | Select | ||
| + | | Table | ||
| + | | [[Sales.Individual_(table)|Sales.Individual]] | ||
| + | |||
| + | |- | ||
| + | | Schema | ||
| + | | Schema | ||
| + | | [[Sales_(schema)|Sales]] | ||
| + | |||
| + | |} | ||
Latest revision as of 23:17, 23 June 2010
wikibot[edit]
| View | Sales.vIndividualCustomer |
| Description | Individual customers (names and addresses) that purchase Adventure Works Cycles products online. |
Source[edit]
CREATE VIEW [Sales].[vIndividualCustomer]
AS
SELECT
i.[CustomerID]
,c.[Title]
,c.[FirstName]
,c.[MiddleName]
,c.[LastName]
,c.[Suffix]
,c.[Phone]
,c.[EmailAddress]
,c.[EmailPromotion]
,at.[Name] AS [AddressType]
,a.[AddressLine1]
,a.[AddressLine2]
,a.[City]
,[StateProvinceName] = sp.[Name]
,a.[PostalCode]
,[CountryRegionName] = cr.[Name]
,i.[Demographics]
FROM [Sales].[Individual] i
INNER JOIN [Person].[Contact] c
ON c.[ContactID] = i.[ContactID]
INNER JOIN [Sales].[CustomerAddress] ca
ON ca.[CustomerID] = i.[CustomerID]
INNER JOIN [Person].[Address] a
ON a.[AddressID] = ca.[AddressID]
INNER JOIN [Person].[StateProvince] sp
ON sp.[StateProvinceID] = a.[StateProvinceID]
INNER JOIN [Person].[CountryRegion] cr
ON cr.[CountryRegionCode] = sp.[CountryRegionCode]
INNER JOIN [Person].[AddressType] at
ON ca.[AddressTypeID] = at.[AddressTypeID]
WHERE i.[CustomerID] IN (SELECT [Sales].[Customer].[CustomerID]
FROM [Sales].[Customer] WHERE UPPER([Sales].[Customer].[CustomerType]) = 'I');
References[edit]
| Dependency Type | Object Type | Referenced Object |
| Select | Table | Person.Address |
| Select | Table | Person.AddressType |
| Select | Table | Person.Contact |
| Select | Table | Person.CountryRegion |
| Select | Table | Person.StateProvince |
| Select | Table | Sales.Customer |
| Select | Table | Sales.CustomerAddress |
| Select | Table | Sales.Individual |
| Schema | Schema | Sales |
automatically generated[edit]
| view | Sales.vIndividualCustomer |
| Description | Individual customers (names and addresses) that purchase Adventure Works Cycles products online. |
CREATE VIEW [Sales].[vIndividualCustomer]
AS
SELECT
i.[CustomerID]
,c.[Title]
,c.[FirstName]
,c.[MiddleName]
,c.[LastName]
,c.[Suffix]
,c.[Phone]
,c.[EmailAddress]
,c.[EmailPromotion]
,at.[Name] AS [AddressType]
,a.[AddressLine1]
,a.[AddressLine2]
,a.[City]
,[StateProvinceName] = sp.[Name]
,a.[PostalCode]
,[CountryRegionName] = cr.[Name]
,i.[Demographics]
FROM [Sales].[Individual] i
INNER JOIN [Person].[Contact] c
ON c.[ContactID] = i.[ContactID]
INNER JOIN [Sales].[CustomerAddress] ca
ON ca.[CustomerID] = i.[CustomerID]
INNER JOIN [Person].[Address] a
ON a.[AddressID] = ca.[AddressID]
INNER JOIN [Person].[StateProvince] sp
ON sp.[StateProvinceID] = a.[StateProvinceID]
INNER JOIN [Person].[CountryRegion] cr
ON cr.[CountryRegionCode] = sp.[CountryRegionCode]
INNER JOIN [Person].[AddressType] at
ON ca.[AddressTypeID] = at.[AddressTypeID]
WHERE i.[CustomerID] IN (SELECT [Sales].[Customer].[CustomerID]
FROM [Sales].[Customer] WHERE UPPER([Sales].[Customer].[CustomerType]) = 'I');
| Dependency Type | Object Type | Referenced Object |
| Select | Table | Person.Address |
| Select | Table | Person.AddressType |
| Select | Table | Person.Contact |
| Select | Table | Person.CountryRegion |
| Select | Table | Person.StateProvince |
| Select | Table | Sales.Customer |
| Select | Table | Sales.CustomerAddress |
| Select | Table | Sales.Individual |
| Schema | Schema | Sales |