pears.criterionSQLFragment

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

Stores sql of requirements so it can be used in jobs

Column Type Null Default Comment
searchlocation char(3) NOT NULL Type of parent record which has id as its pk
id char(20) NOT NULL ID of parent record
SQLFragment long varchar NULL
  • searchlocation, id
  • No outgoing foreign keys found.
  • No incoming foreign keys found.
  • No indexes found.
  • No triggers found.
-- IQX database structure split by table
-- Source: IQXDatabaseStructure - with comments.sql
-- Table: "pears"."criterionSQLFragment"
-- Table comment: Stores sql of requirements so it can be used in jobs
-- Statement count: 4
 
CREATE TABLE "pears"."criterionSQLFragment" (
    "searchlocation"                 CHAR(3) NOT NULL
   ,"id"                             CHAR(20) NOT NULL
   ,"SQLFragment"                    long VARCHAR NULL
   ,PRIMARY KEY ("searchlocation" ASC,"id" ASC) 
)
GO
 
 
COMMENT ON COLUMN "pears"."criterionSQLFragment"."searchlocation" IS 
	'Type of parent record which has id as its pk'
GO
 
 
COMMENT ON COLUMN "pears"."criterionSQLFragment"."id" IS 
	'ID of parent record'
GO
 
 
COMMENT ON TABLE "pears"."criterionSQLFragment" IS 
	'Stores sql of requirements so it can be used in jobs'
GO
  • database/tables/pears_criterionsqlfragment.txt
  • Last modified: 2026/08/07 19:24
  • by 127.0.0.1