Difference between revisions of "Person.vStateProvinceCountryRegion (view)"
| Line 5: | Line 5: | ||
| '''view | | '''view | ||
| Person.vStateProvinceCountryRegion | | Person.vStateProvinceCountryRegion | ||
| + | |- valign="top" | ||
| + | | '''Description | ||
| + | | Joins StateProvince table with CountryRegion table. | ||
|- | |- | ||
|} | |} | ||
| Line 24: | Line 27: | ||
ON sp.[CountryRegionCode] = cr.[CountryRegionCode]; | ON sp.[CountryRegionCode] = cr.[CountryRegionCode]; | ||
</pre> | </pre> | ||
| + | |||
| + | |||
| + | {| border="1" cellpadding="5" cellspacing="0" style="border-collapse:collapse" | ||
| + | |- style="background:silver" | ||
| + | | '''Dependency Type | ||
| + | | '''Object Type | ||
| + | | '''Referenced Object | ||
| + | |||
| + | |- | ||
| + | | Select | ||
| + | | Table | ||
| + | | [[Person.CountryRegion_(table)|Person.CountryRegion]] | ||
| + | |||
| + | |- | ||
| + | | Select | ||
| + | | Table | ||
| + | | [[Person.StateProvince_(table)|Person.StateProvince]] | ||
| + | |||
| + | |} | ||
| + | |||
| + | |||
| + | |||
== automatically generated == | == automatically generated == | ||
Revision as of 22:57, 28 December 2009
wikibot
| 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 |
automatically generated
| 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 |