Generated schema reference. Regenerate this page from the SQL unload; keep hand-maintained business notes in the narrative namespace.
Temp Table - used to list records selected on a Woodpecker grid.
| Column | Type | Null | Default | Comment |
|---|---|---|---|---|
| GroupID | char(20) | NOT NULL | ||
| RecordID | char(20) | NOT NULL |
-- IQX database structure split by table -- Source: IQXDatabaseStructure - with comments.sql -- Table: "pears"."WPKMultiSelection" -- Table comment: Temp Table - used to list records selected on a Woodpecker grid. -- Statement count: 2 CREATE GLOBAL TEMPORARY TABLE "pears"."WPKMultiSelection" ( "GroupID" CHAR(20) NOT NULL ,"RecordID" CHAR(20) NOT NULL ,PRIMARY KEY ("GroupID" ASC,"RecordID" ASC) ) ON COMMIT PRESERVE ROWS GO COMMENT ON TABLE "pears"."WPKMultiSelection" IS 'Temp Table - used to list records selected on a Woodpecker grid.' GO