Difference between revisions of "Database Table: pollresult2"
From Dreamwidth Notes
(Created page with 'pollresult2 =Definition= <source lang="sql"> CREATE TABLE pollresult2 ( journalid INT UNSIGNED NOT NULL, pollid INT UNSIGNED NOT NULL, pollqid ...') |
Dreamnestia (Talk | contribs) |
||
Line 1: | Line 1: | ||
− | + | = Definition = | |
− | =Definition= | + | |
<source lang="sql"> | <source lang="sql"> | ||
CREATE TABLE pollresult2 ( | CREATE TABLE pollresult2 ( | ||
Line 13: | Line 13: | ||
</source> | </source> | ||
− | =Relationships= | + | = Relationships = |
+ | |||
+ | = 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) )