Difference between revisions of "Definition Table"

From truxwiki.com
Jump to navigation Jump to search
(Created page with "The <code>[Definition]</code> table holds information gleaned from exploited media. <source lang="SQL"> CREATE TABLE "Definition" ( "Term" text NOT NULL, "Text" text NOT...")
 
 
Line 1: Line 1:
The <code>[Definition]</code> table holds information gleaned from exploited media.
+
The <code>[Definition]</code> reference table defines terms used in reports.
  
 +
=SQL=
 
<source lang="SQL">
 
<source lang="SQL">
 
CREATE TABLE "Definition" (
 
CREATE TABLE "Definition" (
Line 7: Line 8:
 
);
 
);
 
</source>
 
</source>
 +
 +
=Columns=
 +
==<code>Term</code>==
 +
The thing that needs an explanation.
 +
 +
==<code>Text</code>==
 +
The definition text of the term.

Latest revision as of 06:00, 29 January 2024

The [Definition] reference table defines terms used in reports.

SQL

CREATE TABLE "Definition" (
  "Term" text NOT NULL,
  "Text" text NOT NULL
);

Columns

Term

The thing that needs an explanation.

Text

The definition text of the term.