Table of Contents



pears.Borough

Generated schema reference. Regenerate this page from the SQL unload; keep hand-maintained business notes in the narrative namespace.

Columns

Column Type Null Default Comment
BoroughID char(20) NOT NULL
Name char(30) NOT NULL
AgencyID char(20) NULL
SortOrder smallint NULL

Primary Key

Foreign Keys

Constraint Columns References Delete/update action
AgencyDetails AgencyID pears.agencydetails (agencyid) ON DELETE CASCADE

Referenced By

Indexes

Triggers

Original SQL

-- IQX database structure split by table
-- Source: IQXDatabaseStructure - with comments.sql
-- Table: "pears"."Borough"
-- Table comment: 
-- Statement count: 2
 
CREATE TABLE "pears"."Borough" (
    "BoroughID"                      CHAR(20) NOT NULL
   ,"Name"                           CHAR(30) NOT NULL
   ,"AgencyID"                       CHAR(20) NULL
   ,"SortOrder"                      SMALLINT NULL
   ,PRIMARY KEY ("BoroughID" ASC) 
)
GO
 
 
ALTER TABLE "pears"."Borough"
    ADD FOREIGN KEY "AgencyDetails" ("AgencyID" ASC)
    REFERENCES "pears"."agencydetails" ("agencyid")
    ON DELETE CASCADE
GO