home *** CD-ROM | disk | FTP | other *** search
- -- MySQL dump 9.09
- --
- -- Host: localhost Database: dbpoll
- ---------------------------------------------------------
- -- Server version 4.0.15-nt
-
- --
- -- Table structure for table `tblanswers`
- --
-
- CREATE TABLE tblanswers (
- answerID int(11) NOT NULL auto_increment,
- questionID int(11) default NULL,
- answerText varchar(255) default NULL,
- PRIMARY KEY (answerID)
- ) TYPE=MyISAM;
-
- --
- -- Dumping data for table `tblanswers`
- --
-
-
- --
- -- Table structure for table `tblquestions`
- --
-
- CREATE TABLE tblquestions (
- questionID int(11) NOT NULL auto_increment,
- questionText varchar(255) default NULL,
- PRIMARY KEY (questionID)
- ) TYPE=MyISAM;
-
- --
- -- Dumping data for table `tblquestions`
- --
-
-
- --
- -- Table structure for table `tblresponse`
- --
-
- CREATE TABLE tblresponse (
- responseID int(11) NOT NULL auto_increment,
- questionID int(11) default NULL,
- answerID int(11) default NULL,
- PRIMARY KEY (responseID)
- ) TYPE=MyISAM;
-
- --
- -- Dumping data for table `tblresponse`
- --
-
-
-