home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Practical Internet Web Designer 88
/
PIWD88.iso
/
mac
/
contents
/
developer
/
tutorial_files
/
Pages90-91
/
dbpoll.sql
next >
Wrap
Text File
|
2003-11-02
|
1KB
|
54 lines
-- 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`
--