Difference between revisions of "Database Table: underage"

From Dreamwidth Notes
Jump to: navigation, search
(Created page with 'underage =Definition= <source lang="sql"> CREATE TABLE underage ( uniq CHAR(15) NOT NULL, timeof INT(10) NOT NULL, PRIMARY KE...')
 
Line 1: Line 1:
[[Category: Database Table|underage]]
+
= Definition =
=Definition=
+
 
 
<source lang="sql">
 
<source lang="sql">
 
CREATE TABLE underage (
 
CREATE TABLE underage (
Line 10: Line 10:
 
</source>
 
</source>
  
=Relationships=
+
= Relationships =
 +
 
 +
= Location =
  
=Location=
 
 
[[Global database]]
 
[[Global database]]
 +
 +
[[Category: Database Tables|underage]]

Revision as of 14:18, 1 April 2009

Definition

CREATE TABLE underage (
    uniq        CHAR(15) NOT NULL,
    timeof      INT(10) NOT NULL,
    PRIMARY KEY (uniq),
    KEY         (timeof)
)

Relationships

Location

Global database