Difference between revisions of "Database Table: subsprop"

From Dreamwidth Notes
Jump to: navigation, search
(Created page with 'subsprop =Definition= <source lang="sql"> CREATE TABLE subsprop ( userid INT UNSIGNED NOT NULL, subid INT UNSIGNED NOT NULL, s...')
 
Line 1: Line 1:
[[Category: Database Table|subsprop]]
+
= Definition =
=Definition=
+
 
 
<source lang="sql">
 
<source lang="sql">
 
CREATE TABLE subsprop (
 
CREATE TABLE subsprop (
Line 11: Line 11:
 
</source>
 
</source>
  
=Relationships=
+
= Relationships =
 +
 
 +
= Location =
  
=Location=
 
 
[[Clustered database]]
 
[[Clustered database]]
 +
 +
[[Category: Database Tables|subsprop]]

Revision as of 15:21, 31 March 2009

Definition

CREATE TABLE subsprop (
  userid    INT      UNSIGNED NOT NULL,
  subid     INT      UNSIGNED NOT NULL,
  subpropid SMALLINT UNSIGNED NOT NULL,
            PRIMARY KEY (userid, subid, subpropid),
  VALUE     VARCHAR(255) BINARY DEFAULT NULL
)

Relationships

Location

Clustered database