Create Table Choices (ID int not null auto_increment,
    QuestionID int not null, Text varchar(255),
    primary key (ID), index (QuestionID));

Example 3: The Choices table.

Back to Article