Difference between revisions of "Database Table: log2"

From Dreamwidth Notes
Jump to: navigation, search
(Created page with 'links =Definition= <source lang="sql"> CREATE TABLE links ( journalid int(10) unsigned NOT NULL default '0', ordernum tinyint(4) unsigned NOT NUL...')
 
m
Line 1: Line 1:
[[Category: Database Table|links]]
+
 
=Definition=
+
= Definition =
 +
 
 
<source lang="sql">
 
<source lang="sql">
 
CREATE TABLE links (
 
CREATE TABLE links (
Line 12: Line 13:
 
</source>
 
</source>
  
=Relationships=
+
= Relationships =
 +
 
 +
= Location =
  
=Location=
 
 
[[Clustered database]]
 
[[Clustered database]]
 +
 +
[[Category: Database Tables|log2]]

Revision as of 20:17, 31 March 2009

Definition

CREATE TABLE links (
  journalid INT(10) UNSIGNED NOT NULL DEFAULT '0',
  ordernum tinyint(4) UNSIGNED NOT NULL DEFAULT '0',
  parentnum tinyint(4) UNSIGNED NOT NULL DEFAULT '0',
  url VARCHAR(255) DEFAULT NULL,
  title VARCHAR(255) NOT NULL DEFAULT '',
  KEY  (journalid)
)

Relationships

Location

Clustered database