-
Notifications
You must be signed in to change notification settings - Fork 1
/
database.sql
21 lines (20 loc) · 1.29 KB
/
database.sql
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
CREATE TABLE IF NOT EXISTS `data` (
`id` int(11) NOT NULL auto_increment,
`from_date` date NOT NULL,
`to_date` date NOT NULL,
`full_name` varchar(250) NOT NULL,
`email` varchar(250) NOT NULL,
`city` varchar(250) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=11 ;
INSERT INTO `data` (`id`, `from_date`, `to_date`, `full_name`, `email`, `city`) VALUES
(1, '2011-11-22', '2011-11-26', 'Aaron P. Holt', '[email protected]', 'London'),
(2, '2011-11-23', '2011-11-26', 'Calvin N. Harwood', '[email protected]', 'New York'),
(3, '2011-11-20', '2011-12-14', 'Richard J. Mayo', '[email protected]', 'London'),
(4, '2011-11-11', '2011-11-30', 'Melissa L. Haffey', '[email protected]', 'London'),
(5, '2011-12-06', '2011-12-15', 'Orlando P. Lucas', '[email protected]', 'New York'),
(6, '2012-11-07', '2011-12-16', 'Tara R. Hale', '[email protected]', 'Paris'),
(7, '2011-12-19', '2011-12-23', 'Stuart D. Jordan', '[email protected]', 'Paris'),
(8, '2011-12-25', '2011-12-30', 'John R. Howell', '[email protected]', 'Paris'),
(9, '2011-12-13', '2011-12-30', 'Nick P. Bueche', '[email protected]', 'New York'),
(10, '2011-12-29', '2012-01-04', 'Solomon S. Moreno', '[email protected]', 'Paris');