Skip to main content

Status

[dbo.status]

Column nameKeyData typeAllow NULLsDefaultDescription
statusIdPrimary KeyINT
statusVARCHAR(255)Finishing status e.g. "Retired"

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.status]

Parent_schemaNameParent_tableNameParent_columnNameSchematablecolumnconstraint_name
dbostatusstatusIddboresultsstatusIdFK_Results_StatusID

Example Query

SELECT 
[statusId]
,[status]
FROM
[dbo].[status]

Example Output

statusIdstatus
1Finished
2Disqualified