· 8 years ago · Jul 31, 2018, 10:44 PM
1
2
3--
4-- Database: `4850`
5--
6
7-- --------------------------------------------------------
8
9--
10-- Table structure for table `faq`
11--
12
13CREATE TABLE IF NOT EXISTS `faq` (
14 `id` int(11) NOT NULL AUTO_INCREMENT,
15 `question` text NOT NULL,
16 `answer` text NOT NULL,
17 PRIMARY KEY (`id`)
18) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=5 ;
19
20--
21-- Dumping data for table `faq`
22--
23
24INSERT INTO `faq` (`id`, `question`, `answer`) VALUES
25(1, 'This is a question?', 'This is an answer.'),
26(2, 'This is a question?', 'This is an answer.'),
27(3, 'How many are there?', 'Impossible to tell.'),
28(4, 'Who are you?', 'Dunno.');
29
30/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
31/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
32/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;