pears.storedselectionmember

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

Link between Stored Selection and Person, Company, Vacancy, Placement records

Column Type Null Default Comment
storedselectionid char(20) NOT NULL
record char(20) NOT NULL
  • storedselectionid, record
Constraint Columns References Delete/update action
storedselection storedselectionid pears.storedselection (storedselectionid) NOT NULL; ON DELETE CASCADE
  • No incoming foreign keys found.
  • No indexes found.
  • No triggers found.
-- IQX database structure split by table
-- Source: IQXDatabaseStructure - with comments.sql
-- Table: "pears"."storedselectionmember"
-- Table comment: Link between Stored Selection and Person, Company, Vacancy, Placement records
-- Statement count: 3
 
CREATE TABLE "pears"."storedselectionmember" (
    "storedselectionid"              CHAR(20) NOT NULL
   ,"record"                         CHAR(20) NOT NULL
   ,PRIMARY KEY ("storedselectionid" ASC,"record" ASC) 
)
GO
 
 
COMMENT ON TABLE "pears"."storedselectionmember" IS 
	'Link between Stored Selection and Person, Company, Vacancy, Placement records'
GO
 
 
ALTER TABLE "pears"."storedselectionmember"
    ADD NOT NULL FOREIGN KEY "storedselection" ("storedselectionid" ASC)
    REFERENCES "pears"."storedselection" ("storedselectionid")
    ON DELETE CASCADE
GO
  • database/tables/pears_storedselectionmember.txt
  • Last modified: 2026/08/07 19:24
  • by 127.0.0.1