Difference between revisions of "Database Table: pollresult2"

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

Revision as of 14:12, 1 April 2009

Definition

CREATE TABLE pollresult2 (
  journalid INT UNSIGNED NOT NULL,
  pollid INT UNSIGNED NOT NULL,
  pollqid TINYINT UNSIGNED NOT NULL,
  userid INT UNSIGNED NOT NULL,
  VALUE VARCHAR(255) DEFAULT NULL,
  PRIMARY KEY  (journalid,pollid,pollqid),
  KEY (userid,pollid)
)

Relationships

Location

Clustered database