Difference between revisions of "Person.vStateProvinceCountryRegion (view)"

From dbscript Online Help
Jump to: navigation, search
 
Line 2: Line 2:
  
 
{| border="1" cellpadding="5" cellspacing="0" style="border-collapse:collapse"
 
{| border="1" cellpadding="5" cellspacing="0" style="border-collapse:collapse"
|-
+
|- valign="top"
 
| '''View
 
| '''View
 
| Person.vStateProvinceCountryRegion
 
| Person.vStateProvinceCountryRegion
Line 8: Line 8:
 
| '''Description
 
| '''Description
 
| Joins StateProvince table with CountryRegion table.
 
| Joins StateProvince table with CountryRegion table.
|-
 
 
|}
 
|}
 
  
 
=== Source ===
 
=== Source ===
Line 37: Line 35:
 
| '''Referenced Object
 
| '''Referenced Object
  
|-
+
|- valign="top"
 
| Select
 
| Select
 
| Table
 
| Table
 
| [[Person.CountryRegion_(table)|Person.CountryRegion]]
 
| [[Person.CountryRegion_(table)|Person.CountryRegion]]
  
|-
+
|- valign="top"
 
| Select
 
| Select
 
| Table
 
| Table
 
| [[Person.StateProvince_(table)|Person.StateProvince]]
 
| [[Person.StateProvince_(table)|Person.StateProvince]]
  
|-
+
|- valign="top"
 
| Schema
 
| Schema
 
| Schema
 
| Schema

Latest revision as of 00:16, 24 June 2010

wikibot[edit]

View Person.vStateProvinceCountryRegion
Description Joins StateProvince table with CountryRegion table.

Source[edit]

CREATE VIEW [Person].[vStateProvinceCountryRegion] 
WITH SCHEMABINDING 
AS 
SELECT 
    sp.[StateProvinceID] 
    ,sp.[StateProvinceCode] 
    ,sp.[IsOnlyStateProvinceFlag] 
    ,sp.[Name] AS [StateProvinceName] 
    ,sp.[TerritoryID] 
    ,cr.[CountryRegionCode] 
    ,cr.[Name] AS [CountryRegionName]
FROM [Person].[StateProvince] sp 
    INNER JOIN [Person].[CountryRegion] cr 
    ON sp.[CountryRegionCode] = cr.[CountryRegionCode];

References[edit]

Dependency Type Object Type Referenced Object
Select Table Person.CountryRegion
Select Table Person.StateProvince
Schema Schema Person


automatically generated[edit]

view Person.vStateProvinceCountryRegion
Description Joins StateProvince table with CountryRegion table.

CREATE VIEW [Person].[vStateProvinceCountryRegion] 
WITH SCHEMABINDING 
AS 
SELECT 
    sp.[StateProvinceID] 
    ,sp.[StateProvinceCode] 
    ,sp.[IsOnlyStateProvinceFlag] 
    ,sp.[Name] AS [StateProvinceName] 
    ,sp.[TerritoryID] 
    ,cr.[CountryRegionCode] 
    ,cr.[Name] AS [CountryRegionName]
FROM [Person].[StateProvince] sp 
    INNER JOIN [Person].[CountryRegion] cr 
    ON sp.[CountryRegionCode] = cr.[CountryRegionCode];


Dependency Type Object Type Referenced Object
Select Table Person.CountryRegion
Select Table Person.StateProvince
Schema Schema Person