CREATE TABLE sample ( id MEDIUMINT NOT NULL AUTO_INCREMENT, title varchar(80), class varchar(40), question text, answer text, PRIMARY KEY (id) ); INSERT INTO sample VALUES(1, "first page", "classification", "Welcome to the Q and A program", "The Answer can be concealed."); SELECT question FROM sample;