Skip to main content

Countries

[dbo.countries]

Column nameKeyData typeAllow NULLsDefaultDescription
countryIDPrimary KeyINT
countryVARCHAR(255)Name of the country, E.G. United States

Table Relationships

This table has no foreign keys with any other tables

Where Used

Where is this table referenced and what columns are used? The below table shows that information.

[dbo.countries]

Parent_schemaNameParent_tableNameParent_columnNameSchematablecolumnconstraint_name
dbocountriescountryIDdbocircuitscountryIDFK_Circuits_CountryID

Example Query

SELECT 
[countryID]
,[country]
FROM
[dbo].[countries]

Example Output

countryIDcountry
1Argentina
2Australia