Difference between revisions of "Database Table: pollquestion2"

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

Revision as of 15:10, 31 March 2009

Definition

CREATE TABLE pollquestion2 (
  journalid INT UNSIGNED NOT NULL,
  pollid INT UNSIGNED NOT NULL,
  pollqid TINYINT UNSIGNED NOT NULL,
  sortorder TINYINT UNSIGNED NOT NULL DEFAULT '0',
  TYPE ENUM('check','radio','drop','text','scale') NOT NULL,
  opts VARCHAR(20) DEFAULT NULL,
  qtext TEXT,
  PRIMARY KEY  (journalid,pollid,pollqid)
)

Relationships

Location

Clustered database