Last active
November 19, 2016 18:02
-
-
Save wzulfikar/84e42ce3df7aa82ee4d07f596b7e0cf3 to your computer and use it in GitHub Desktop.
MySQL dump for Datatables Editor examples (https://editor.datatables.net/examples/index). Example for other DB: https://editor.datatables.net/manual/php/installing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- | |
-- | |
-- MySQL tables used to run the Editor examples. | |
-- | |
-- For more information about how the client and server-sides interact, please | |
-- refer to the Editor documentation: http://editor.datatables.net/manual . | |
-- | |
-- | |
-- | |
-- To do list examples | |
-- | |
DROP TABLE IF EXISTS todo; | |
CREATE TABLE `todo` ( | |
`id` int(10) NOT NULL auto_increment, | |
`item` varchar(255) NOT NULL default '', | |
`done` boolean NOT NULL default 0, | |
`priority` integer NOT NULL default 1, | |
PRIMARY KEY (`id`) | |
); | |
INSERT INTO `todo` (`item`, `done`, `priority`) | |
VALUES | |
( 'Send business plan to clients', 1, 1 ), | |
( 'Web-site copy revisions', 0, 2 ), | |
( 'Review client tracking', 0, 2 ), | |
( 'E-mail catchup', 0, 3 ), | |
( 'Complete worksheet', 0, 4 ), | |
( 'Prep sales presentation', 0, 5 ); | |
-- | |
-- Users table examples | |
-- | |
DROP TRIGGER IF EXISTS users_insert; | |
DROP TRIGGER IF EXISTS users_update; | |
DROP TABLE IF EXISTS user_dept CASCADE; | |
DROP TABLE IF EXISTS user_access CASCADE; | |
DROP TABLE IF EXISTS users_files CASCADE; | |
DROP TABLE IF EXISTS users CASCADE; | |
DROP TABLE IF EXISTS dept CASCADE; | |
DROP TABLE IF EXISTS access CASCADE; | |
DROP TABLE IF EXISTS sites CASCADE; | |
DROP TABLE IF EXISTS files CASCADE; | |
CREATE TABLE users ( | |
`id` mediumint(8) unsigned NOT NULL auto_increment, | |
`title` varchar(255) default NULL, | |
`first_name` varchar(255) default NULL, | |
`last_name` varchar(255) default NULL, | |
`phone` varchar(100) default NULL, | |
`city` varchar(50) default NULL, | |
`zip` varchar(10) default NULL, | |
`updated_date` datetime DEFAULT NULL, | |
`registered_date` datetime default NULL, | |
`active` boolean default NULL, | |
`manager` int default NULL, | |
`site` int default NULL, | |
`image` int default NULL, | |
`shift_start` time default NULL, | |
`shift_end` time default NULL, | |
PRIMARY KEY (`id`) | |
) AUTO_INCREMENT=1; | |
CREATE TRIGGER users_insert BEFORE INSERT ON `users` | |
FOR EACH ROW SET NEW.updated_date = IFNULL(NEW.updated_date, NOW()); | |
CREATE TRIGGER users_update BEFORE UPDATE ON `users` | |
FOR EACH ROW SET NEW.updated_date = IFNULL(NEW.updated_date, NOW()); | |
CREATE TABLE dept ( | |
`id` mediumint(8) unsigned NOT NULL auto_increment, | |
`name` varchar(250) default NULL, | |
PRIMARY KEY (`id`) | |
) AUTO_INCREMENT=1; | |
CREATE TABLE access ( | |
`id` mediumint(8) unsigned NOT NULL auto_increment, | |
`name` varchar(250) default NULL, | |
PRIMARY KEY (`id`) | |
) AUTO_INCREMENT=1; | |
CREATE TABLE sites ( | |
`id` mediumint(8) unsigned NOT NULL auto_increment, | |
`name` varchar(250) default NULL, | |
PRIMARY KEY (`id`) | |
) AUTO_INCREMENT=1; | |
CREATE TABLE `files` ( | |
`id` int NOT NULL AUTO_INCREMENT, | |
`filename` varchar(250) NOT NULL, | |
`filesize` int NOT NULL, | |
`web_path` varchar(250) NOT NULL, | |
`system_path` varchar(250) NOT NULL, | |
PRIMARY KEY (`id`) | |
) AUTO_INCREMENT=1; | |
# Expect only one dept per user | |
CREATE TABLE user_dept ( | |
`user_id` mediumint(8) unsigned NOT NULL, | |
`dept_id` mediumint(8) unsigned NOT NULL, | |
PRIMARY KEY (`user_id`, `dept_id`), | |
UNIQUE KEY `user_id` (`user_id`), | |
FOREIGN KEY (`user_id`) REFERENCES users(id) ON DELETE CASCADE, | |
FOREIGN KEY (`dept_id`) REFERENCES dept(id) ON DELETE CASCADE | |
); | |
# Expect multiple access per user | |
CREATE TABLE user_access ( | |
`user_id` mediumint(8) unsigned NOT NULL, | |
`access_id` mediumint(8) unsigned NOT NULL, | |
PRIMARY KEY (`user_id`, `access_id`), | |
FOREIGN KEY (`user_id`) REFERENCES users(id) ON DELETE CASCADE, | |
FOREIGN KEY (`access_id`) REFERENCES access(id) ON DELETE CASCADE | |
); | |
CREATE TABLE users_files ( | |
`user_id` int NOT NULL, | |
`file_id` int NOT NULL | |
); | |
INSERT INTO `users` (`title`, `first_name`, `last_name`, `phone`, `city`, `zip`, `registered_date`, `active`, `manager`, `site`, `shift_start`, `shift_end`) | |
VALUES | |
('Miss','Quynn', 'Contreras', '1-971-977-4681', 'Slidell', '81080', '2012-04-06 18:53:00', 0, 1, 1, '08:00:00', '16:00:00'), | |
('Mr', 'Kaitlin', 'Smith', '1-436-523-6103', 'Orlando', 'U5G 7J3', '2012-11-20 05:58:25', 1, 1, 2, '09:00:00', '17:00:00'), | |
('Mrs', 'Cruz', 'Reynolds', '1-776-102-6352', 'Lynn', 'EJ89 9DQ', '2011-12-31 23:34:03', 0, 2, 3, '09:00:00', '17:00:00'), | |
('Dr', 'Sophia', 'Morris', '1-463-224-1405', 'Belleville', 'T1F 2X1', '2012-08-04 02:55:53', 0, 3, 4, '08:00:00', '15:30:00'), | |
('Miss','Kamal', 'Roberson', '1-134-408-5227', 'Rehoboth Beach', 'V7I 6T5', '2012-12-23 00:17:03', 1, 1, 5, '09:00:00', '17:00:00'), | |
('Dr', 'Dustin', 'Rosa', '1-875-919-3188', 'Jersey City', 'E4 8ZE', '2012-10-05 22:18:59', 0, 1, 6, '09:00:00', '17:00:00'), | |
('Dr', 'Xantha', 'George', '1-106-884-4754', 'Billings', 'Y2I 6J7', '2012-11-25 12:50:16', 0, 6, 1, '07:00:00', '15:00:00'), | |
('Mrs', 'Bryar', 'Long', '1-918-114-8083', 'San Bernardino', '82983', '2012-05-14 23:32:25', 0, 1, 2, '09:00:00', '17:00:00'), | |
('Mrs', 'Kuame', 'Wynn', '1-101-692-4039', 'Truth or Consequences', '21290', '2011-06-21 16:27:07', 1, 2, 3, '06:00:00', '14:00:00'), | |
('Ms', 'Indigo', 'Brennan', '1-756-756-8161', 'Moline', 'NO8 3UY', '2011-02-19 12:51:08', 1, 5, 4, '12:00:00', '00:00:00'), | |
('Mrs', 'Avram', 'Allison', '1-751-507-2640', 'Rancho Palos Verdes', 'I7Q 8H4', '2012-12-30 17:02:10', 0, 1, 5, '09:00:00', '17:00:00'), | |
('Mr', 'Martha', 'Burgess', '1-971-722-1203', 'Toledo', 'Q5R 9HI', '2011-02-04 17:25:55', 1, 1, 6, '12:00:00', '00:00:00'), | |
('Miss','Lael', 'Kim', '1-626-697-2194', 'Lake Charles', '34209', '2012-07-24 06:44:22', 1, 7, 1, '09:00:00', '17:00:00'), | |
('Dr', 'Lyle', 'Lewis', '1-231-793-3520', 'Simi Valley', 'H9B 2H4', '2012-08-30 03:28:54', 0, 1, 2, '00:00:00', '12:00:00'), | |
('Miss','Veronica', 'Marks', '1-750-981-6759', 'Glens Falls', 'E3C 5D1', '2012-08-14 12:09:24', 1, 2, 3, '09:00:00', '17:00:00'), | |
('Mrs', 'Wynne', 'Ruiz', '1-983-744-5362', 'Branson', 'L9E 6E2', '2012-11-06 01:04:07', 0, 1, 4, '12:00:00', '00:00:00'), | |
('Ms', 'Jessica', 'Bryan', '1-949-932-6772', 'Boulder City', 'F5P 6NU', '2013-02-01 20:22:33', 0, 5, 5, '09:00:00', '17:00:00'), | |
('Ms', 'Quinlan', 'Hyde', '1-625-664-6072', 'Sheridan', 'Y8A 1LQ', '2011-10-25 16:53:45', 1, 1, 6, '08:00:00', '15:00:00'), | |
('Miss','Mona', 'Terry', '1-443-179-7343', 'Juneau', 'G62 1OF', '2012-01-15 09:26:59', 0, 1, 1, '08:30:00', '16:30:00'), | |
('Mrs', 'Medge', 'Patterson', '1-636-979-0497', 'Texarkana', 'I5U 6E0', '2012-10-20 16:26:18', 1, 1, 2, '09:00:00', '17:00:00'), | |
('Mrs', 'Perry', 'Gamble', '1-440-976-9560', 'Arcadia', '98923', '2012-06-06 02:03:49', 1, 2, 3, '00:00:00', '12:00:00'), | |
('Mrs', 'Pandora', 'Armstrong', '1-197-431-4390', 'Glendora', '34124', '2011-08-29 01:45:06', 0, 7, 4, '21:00:00', '03:00:00'), | |
('Mr', 'Pandora', 'Briggs', '1-278-288-9221', 'Oneida', 'T9M 4H9', '2012-07-16 08:44:41', 1, 4, 5, '09:00:00', '17:00:00'), | |
('Mrs', 'Maris', 'Leblanc', '1-936-114-2921', 'Cohoes', 'V1H 6Z7', '2011-05-04 13:07:04', 1, 1, 6, '00:00:00', '12:00:00'), | |
('Mrs', 'Ishmael', 'Crosby', '1-307-243-2684', 'Midwest City', 'T6 8PS', '2011-07-02 23:11:11', 0, 3, 1, '09:00:00', '17:00:00'), | |
('Miss','Quintessa', 'Pickett', '1-801-122-7471', 'North Tonawanda', '09166', '2013-02-05 10:33:22', 1, 1, 2, '12:00:00', '00:00:00'), | |
('Miss','Ifeoma', 'Mays', '1-103-883-0962', 'Parkersburg', '87377', '2011-08-22 12:19:09', 0, 1, 3, '09:00:00', '17:00:00'), | |
('Mrs', 'Basia', 'Harrell', '1-528-238-4178', 'Cody', 'LJ54 1IU', '2012-05-07 14:42:55', 1, 1, 4, '09:00:00', '17:00:00'), | |
('Mrs', 'Hamilton', 'Blackburn', '1-676-857-1423', 'Delta Junction', 'X5 9HE', '2011-05-19 07:39:48', 0, 6, 5, '10:00:00', '18:00:00'), | |
('Ms', 'Dexter', 'Burton', '1-275-332-8186', 'Gainesville', '65914', '2013-02-01 16:21:20', 1, 5, 6, '21:00:00', '03:00:00'), | |
('Mrs', 'Quinn', 'Mccall', '1-808-916-4497', 'Fallon', 'X4 8UB', '2012-03-24 19:31:51', 0, 1, 1, '09:00:00', '17:00:00'), | |
('Mr', 'Alexa', 'Wilder', '1-727-307-1997', 'Johnson City', '16765', '2011-10-14 08:21:14', 0, 3, 2, '09:00:00', '17:00:00'), | |
('Ms', 'Rhonda', 'Harrell', '1-934-906-6474', 'Minnetonka', 'I2R 1H2', '2011-11-15 00:08:02', 1, 1, 3, '12:00:00', '00:00:00'), | |
('Mrs', 'Jocelyn', 'England', '1-826-860-7773', 'Chico', '71102', '2012-05-31 18:01:43', 1, 1, 4, '09:00:00', '17:00:00'), | |
('Dr', 'Vincent', 'Banks', '1-225-418-0941', 'Palo Alto', '03281', '2011-08-07 07:22:43', 0, 1, 5, '18:00:00', '02:00:00'), | |
('Mrs', 'Stewart', 'Chan', '1-781-793-2340', 'Grand Forks', 'L1U 3ED', '2012-11-01 23:14:44', 1, 6, 6, '08:00:00', '16:00:00'); | |
INSERT INTO `dept` (`name`) | |
VALUES | |
( 'IT' ), | |
( 'Sales' ), | |
( 'Pre-Sales' ), | |
( 'Marketing' ), | |
( 'Senior Management' ), | |
( 'Accounts' ), | |
( 'Support' ); | |
INSERT INTO `access` (`name`) | |
VALUES | |
( 'Printer' ), | |
( 'Servers' ), | |
( 'Desktop' ), | |
( 'VMs' ), | |
( 'Web-site' ), | |
( 'Accounts' ); | |
INSERT INTO `user_dept` (`user_id`, `dept_id`) | |
VALUES | |
( 1, 1 ), | |
( 2, 4 ), | |
( 3, 7 ), | |
( 4, 3 ), | |
( 5, 2 ), | |
( 6, 6 ), | |
( 7, 2 ), | |
( 8, 1 ), | |
( 9, 2 ), | |
( 10, 3 ), | |
( 11, 4 ), | |
( 12, 5 ), | |
( 13, 6 ), | |
( 14, 4 ), | |
( 15, 3 ), | |
( 16, 6 ), | |
( 17, 3 ), | |
( 18, 7 ), | |
( 19, 7 ), | |
( 20, 1 ), | |
( 21, 2 ), | |
( 22, 6 ), | |
( 23, 3 ), | |
( 24, 4 ), | |
( 25, 5 ), | |
( 26, 6 ), | |
( 27, 7 ), | |
( 28, 2 ), | |
( 29, 3 ), | |
( 30, 1 ), | |
( 31, 3 ), | |
( 32, 4 ), | |
( 33, 6 ), | |
( 34, 7 ), | |
( 35, 2 ), | |
( 36, 3 ); | |
INSERT INTO `user_access` (`user_id`, `access_id`) | |
VALUES | |
( 1, 1 ), | |
( 1, 3 ), | |
( 1, 4 ), | |
( 2, 4 ), | |
( 2, 1 ), | |
( 4, 3 ), | |
( 4, 4 ), | |
( 4, 5 ), | |
( 4, 6 ), | |
( 5, 2 ), | |
( 6, 6 ), | |
( 7, 2 ), | |
( 8, 1 ), | |
( 9, 2 ), | |
( 10, 3 ), | |
( 10, 2 ), | |
( 10, 1 ), | |
( 11, 4 ), | |
( 11, 6 ), | |
( 12, 5 ), | |
( 12, 1 ), | |
( 12, 2 ), | |
( 13, 1 ), | |
( 13, 2 ), | |
( 13, 3 ), | |
( 13, 6 ), | |
( 18, 3 ), | |
( 18, 2 ), | |
( 18, 1 ), | |
( 20, 1 ), | |
( 20, 2 ), | |
( 20, 3 ), | |
( 21, 2 ), | |
( 21, 4 ), | |
( 22, 6 ), | |
( 22, 3 ), | |
( 22, 2 ), | |
( 30, 1 ), | |
( 30, 5 ), | |
( 30, 3 ), | |
( 31, 3 ), | |
( 32, 4 ), | |
( 33, 6 ), | |
( 34, 1 ), | |
( 34, 2 ), | |
( 34, 3 ), | |
( 35, 2 ), | |
( 36, 3 ); | |
INSERT INTO `sites` (`name`) | |
VALUES | |
( 'Edinburgh' ), | |
( 'London' ), | |
( 'Paris' ), | |
( 'New York' ), | |
( 'Singapore' ), | |
( 'Los Angeles' ); | |
-- | |
-- Reading list example table | |
-- | |
DROP TABLE IF EXISTS audiobooks; | |
CREATE TABLE `audiobooks` ( | |
`id` int NOT NULL AUTO_INCREMENT, | |
`title` varchar(250) NOT NULL, | |
`author` varchar(250) NOT NULL, | |
`duration` int NOT NULL, | |
`readingOrder` int NOT NULL, | |
PRIMARY KEY (`id`) | |
) AUTO_INCREMENT=1; | |
INSERT INTO `audiobooks` (`title`, `author`, `duration`, `readingOrder`) | |
VALUES | |
( 'The Final Empire: Mistborn', 'Brandon Sanderson', 1479, 1 ), | |
( 'The Name of the Wind', 'Patrick Rothfuss', 983, 2 ), | |
( 'The Blade Itself: The First Law', 'Joe Abercrombie', 1340, 3 ), | |
( 'The Heroes', 'Joe Abercrombie', 1390, 4 ), | |
( 'Assassin\'s Apprentice: The Farseer Trilogy', 'Robin Hobb', 1043, 5 ), | |
( 'The Eye of the World: Wheel of Time', 'Robert Jordan', 1802, 6 ), | |
( 'The Wise Man\'s Fear', 'Patrick Rothfuss', 1211, 7 ), | |
( 'The Way of Kings: The Stormlight Archive', 'Brandon Sanderson', 2734, 8 ), | |
( 'The Lean Startup', 'Eric Ries', 523, 9 ), | |
( 'House of Suns', 'Alastair Reynolds', 1096, 10 ), | |
( 'The Lies of Locke Lamora', 'Scott Lynch', 1323, 11 ), | |
( 'Best Served Cold', 'Joe Abercrombie', 1592, 12 ), | |
( 'Thinking, Fast and Slow', 'Daniel Kahneman', 1206, 13 ), | |
( 'The Dark Tower I: The Gunslinger', 'Stephen King', 439, 14 ), | |
( 'Theft of Swords: Riyria Revelations', 'Michael J. Sullivan', 1357, 15 ), | |
( 'The Emperor\'s Blades: Chronicle of the Unhewn Throne', 'Brian Staveley', 1126, 16 ), | |
( 'The Magic of Recluce: Saga of Recluce', 'L. E. Modesitt Jr.', 1153, 17 ), | |
( 'Red Country', 'Joe Abercrombie', 1196, 18 ), | |
( 'Warbreaker', 'Brandon Sanderson', 1496, 19 ), | |
( 'Magician', 'Raymond E. Feist', 2173, 20 ), | |
( 'Blood Song', 'Anthony Ryan', 1385, 21 ), | |
( 'Half a King', 'Joe Abercrombie', 565, 22 ), | |
( 'Prince of Thorns: Broken Empire', 'Mark Lawrence', 537, 23 ), | |
( 'The Immortal Prince: Tide Lords', 'Jennifer Fallon', 1164, 24 ), | |
( 'Medalon: Demon Child', 'Jennifer Fallon', 1039, 25 ), | |
( 'The Black Company: Chronicles of The Black Company', 'Glen Cook', 654, 26 ); | |
-- | |
-- DataTables Ajax and server-side processing database (MySQL) | |
-- | |
DROP TABLE IF EXISTS `datatables_demo`; | |
CREATE TABLE `datatables_demo` ( | |
`id` int(10) NOT NULL auto_increment, | |
`first_name` varchar(250) NOT NULL default '', | |
`last_name` varchar(250) NOT NULL default '', | |
`position` varchar(250) NOT NULL default '', | |
`email` varchar(250) NOT NULL default '', | |
`office` varchar(250) NOT NULL default '', | |
`start_date` datetime default NULL, | |
`age` int(8), | |
`salary` int(8), | |
`seq` int(8), | |
`extn` varchar(8) NOT NULL default '', | |
PRIMARY KEY (`id`), | |
INDEX (`seq`) | |
); | |
INSERT INTO `datatables_demo` | |
( id, first_name, last_name, age, position, salary, start_date, extn, email, office, seq ) | |
VALUES | |
( 1, 'Tiger', 'Nixon', 61, 'System Architect', 320800, '2011/04/25', 5421, '[email protected]', 'Edinburgh', 2 ), | |
( 2, 'Garrett', 'Winters', 63, 'Accountant', 170750, '2011/07/25', 8422, '[email protected]', 'Tokyo', 22 ), | |
( 3, 'Ashton', 'Cox', 66, 'Junior Technical Author', 86000, '2009/01/12', 1562, '[email protected]', 'San Francisco', 6 ), | |
( 4, 'Cedric', 'Kelly', 22, 'Senior Javascript Developer', 433060, '2012/03/29', 6224, '[email protected]', 'Edinburgh', 41 ), | |
( 5, 'Airi', 'Satou', 33, 'Accountant', 162700, '2008/11/28', 5407, '[email protected]', 'Tokyo', 55 ), | |
( 6, 'Brielle', 'Williamson', 61, 'Integration Specialist', 372000, '2012/12/02', 4804, '[email protected]', 'New York', 21 ), | |
( 7, 'Herrod', 'Chandler', 59, 'Sales Assistant', 137500, '2012/08/06', 9608, '[email protected]', 'San Francisco', 46 ), | |
( 8, 'Rhona', 'Davidson', 55, 'Integration Specialist', 327900, '2010/10/14', 6200, '[email protected]', 'Tokyo', 50 ), | |
( 9, 'Colleen', 'Hurst', 39, 'Javascript Developer', 205500, '2009/09/15', 2360, '[email protected]', 'San Francisco', 26 ), | |
( 10, 'Sonya', 'Frost', 23, 'Software Engineer', 103600, '2008/12/13', 1667, '[email protected]', 'Edinburgh', 18 ), | |
( 11, 'Jena', 'Gaines', 30, 'Office Manager', 90560, '2008/12/19', 3814, '[email protected]', 'London', 13 ), | |
( 12, 'Quinn', 'Flynn', 22, 'Support Lead', 342000, '2013/03/03', 9497, '[email protected]', 'Edinburgh', 23 ), | |
( 13, 'Charde', 'Marshall', 36, 'Regional Director', 470600, '2008/10/16', 6741, '[email protected]', 'San Francisco', 14 ), | |
( 14, 'Haley', 'Kennedy', 43, 'Senior Marketing Designer', 313500, '2012/12/18', 3597, '[email protected]', 'London', 12 ), | |
( 15, 'Tatyana', 'Fitzpatrick', 19, 'Regional Director', 385750, '2010/03/17', 1965, '[email protected]', 'London', 54 ), | |
( 16, 'Michael', 'Silva', 66, 'Marketing Designer', 198500, '2012/11/27', 1581, '[email protected]', 'London', 37 ), | |
( 17, 'Paul', 'Byrd', 64, 'Chief Financial Officer (CFO)', 725000, '2010/06/09', 3059, '[email protected]', 'New York', 32 ), | |
( 18, 'Gloria', 'Little', 59, 'Systems Administrator', 237500, '2009/04/10', 1721, '[email protected]', 'New York', 35 ), | |
( 19, 'Bradley', 'Greer', 41, 'Software Engineer', 132000, '2012/10/13', 2558, '[email protected]', 'London', 48 ), | |
( 20, 'Dai', 'Rios', 35, 'Personnel Lead', 217500, '2012/09/26', 2290, '[email protected]', 'Edinburgh', 45 ), | |
( 21, 'Jenette', 'Caldwell', 30, 'Development Lead', 345000, '2011/09/03', 1937, '[email protected]', 'New York', 17 ), | |
( 22, 'Yuri', 'Berry', 40, 'Chief Marketing Officer (CMO)', 675000, '2009/06/25', 6154, '[email protected]', 'New York', 57 ), | |
( 23, 'Caesar', 'Vance', 21, 'Pre-Sales Support', 106450, '2011/12/12', 8330, '[email protected]', 'New York', 29 ), | |
( 24, 'Doris', 'Wilder', 23, 'Sales Assistant', 85600, '2010/09/20', 3023, '[email protected]', 'Sidney', 56 ), | |
( 25, 'Angelica', 'Ramos', 47, 'Chief Executive Officer (CEO)', 1200000, '2009/10/09', 5797, '[email protected]', 'London', 36 ), | |
( 26, 'Gavin', 'Joyce', 42, 'Developer', 92575, '2010/12/22', 8822, '[email protected]', 'Edinburgh', 5 ), | |
( 27, 'Jennifer', 'Chang', 28, 'Regional Director', 357650, '2010/11/14', 9239, '[email protected]', 'Singapore', 51 ), | |
( 28, 'Brenden', 'Wagner', 28, 'Software Engineer', 206850, '2011/06/07', 1314, '[email protected]', 'San Francisco', 20 ), | |
( 29, 'Fiona', 'Green', 48, 'Chief Operating Officer (COO)', 850000, '2010/03/11', 2947, '[email protected]', 'San Francisco', 7 ), | |
( 30, 'Shou', 'Itou', 20, 'Regional Marketing', 163000, '2011/08/14', 8899, '[email protected]', 'Tokyo', 1 ), | |
( 31, 'Michelle', 'House', 37, 'Integration Specialist', 95400, '2011/06/02', 2769, '[email protected]', 'Sidney', 39 ), | |
( 32, 'Suki', 'Burks', 53, 'Developer', 114500, '2009/10/22', 6832, '[email protected]', 'London', 40 ), | |
( 33, 'Prescott', 'Bartlett', 27, 'Technical Author', 145000, '2011/05/07', 3606, '[email protected]', 'London', 47 ), | |
( 34, 'Gavin', 'Cortez', 22, 'Team Leader', 235500, '2008/10/26', 2860, '[email protected]', 'San Francisco', 52 ), | |
( 35, 'Martena', 'Mccray', 46, 'Post-Sales support', 324050, '2011/03/09', 8240, '[email protected]', 'Edinburgh', 8 ), | |
( 36, 'Unity', 'Butler', 47, 'Marketing Designer', 85675, '2009/12/09', 5384, '[email protected]', 'San Francisco', 24 ), | |
( 37, 'Howard', 'Hatfield', 51, 'Office Manager', 164500, '2008/12/16', 7031, '[email protected]', 'San Francisco', 38 ), | |
( 38, 'Hope', 'Fuentes', 41, 'Secretary', 109850, '2010/02/12', 6318, '[email protected]', 'San Francisco', 53 ), | |
( 39, 'Vivian', 'Harrell', 62, 'Financial Controller', 452500, '2009/02/14', 9422, '[email protected]', 'San Francisco', 30 ), | |
( 40, 'Timothy', 'Mooney', 37, 'Office Manager', 136200, '2008/12/11', 7580, '[email protected]', 'London', 28 ), | |
( 41, 'Jackson', 'Bradshaw', 65, 'Director', 645750, '2008/09/26', 1042, '[email protected]', 'New York', 34 ), | |
( 42, 'Olivia', 'Liang', 64, 'Support Engineer', 234500, '2011/02/03', 2120, '[email protected]', 'Singapore', 4 ), | |
( 43, 'Bruno', 'Nash', 38, 'Software Engineer', 163500, '2011/05/03', 6222, '[email protected]', 'London', 3 ), | |
( 44, 'Sakura', 'Yamamoto', 37, 'Support Engineer', 139575, '2009/08/19', 9383, '[email protected]', 'Tokyo', 31 ), | |
( 45, 'Thor', 'Walton', 61, 'Developer', 98540, '2013/08/11', 8327, '[email protected]', 'New York', 11 ), | |
( 46, 'Finn', 'Camacho', 47, 'Support Engineer', 87500, '2009/07/07', 2927, '[email protected]', 'San Francisco', 10 ), | |
( 47, 'Serge', 'Baldwin', 64, 'Data Coordinator', 138575, '2012/04/09', 8352, '[email protected]', 'Singapore', 44 ), | |
( 48, 'Zenaida', 'Frank', 63, 'Software Engineer', 125250, '2010/01/04', 7439, '[email protected]', 'New York', 42 ), | |
( 49, 'Zorita', 'Serrano', 56, 'Software Engineer', 115000, '2012/06/01', 4389, '[email protected]', 'San Francisco', 27 ), | |
( 50, 'Jennifer', 'Acosta', 43, 'Junior Javascript Developer', 75650, '2013/02/01', 3431, '[email protected]', 'Edinburgh', 49 ), | |
( 51, 'Cara', 'Stevens', 46, 'Sales Assistant', 145600, '2011/12/06', 3990, '[email protected]', 'New York', 15 ), | |
( 52, 'Hermione', 'Butler', 47, 'Regional Director', 356250, '2011/03/21', 1016, '[email protected]', 'London', 9 ), | |
( 53, 'Lael', 'Greer', 21, 'Systems Administrator', 103500, '2009/02/27', 6733, '[email protected]', 'London', 25 ), | |
( 54, 'Jonas', 'Alexander', 30, 'Developer', 86500, '2010/07/14', 8196, '[email protected]', 'San Francisco', 33 ), | |
( 55, 'Shad', 'Decker', 51, 'Regional Director', 183000, '2008/11/13', 6373, '[email protected]', 'Edinburgh', 43 ), | |
( 56, 'Michael', 'Bruce', 29, 'Javascript Developer', 183000, '2011/06/27', 5384, '[email protected]', 'Singapore', 16 ), | |
( 57, 'Donna', 'Snider', 27, 'Customer Support', 112000, '2011/01/25', 4226, '[email protected]', 'New York', 19 ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment