-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcreate_employees.sql
57 lines (50 loc) · 10.1 KB
/
create_employees.sql
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
CREATE DATABASE IF NOT EXISTS `testdb` /*!40100 DEFAULT CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci */ /*!80016 DEFAULT ENCRYPTION='N' */;
USE `testdb`;
-- MySQL dump 10.13 Distrib 8.0.34, for Linux (x86_64)
--
-- Host: 172.17.0.2 Database: testdb
-- ------------------------------------------------------
-- Server version 8.1.0
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!50503 SET NAMES utf8 */;
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
/*!40103 SET TIME_ZONE='+00:00' */;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
--
-- Table structure for table `employees`
--
DROP TABLE IF EXISTS `employees`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `employees` (
`id` int NOT NULL AUTO_INCREMENT,
`first_name` varchar(20) NOT NULL,
`last_name` varchar(20) NOT NULL,
`email` varchar(100) DEFAULT NULL,
`address` varchar(150) NOT NULL,
`phone_number` varchar(13) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=101 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `employees`
--
LOCK TABLES `employees` WRITE;
/*!40000 ALTER TABLE `employees` DISABLE KEYS */;
INSERT INTO `employees` VALUES (1,'Marketa','Amery','[email protected]','62693 Steensland Center','(684) 4950361'),(2,'Mia','Goodee','[email protected]','24150 Evergreen Hill','(963) 9176397'),(3,'Gabriel','Attrie',NULL,'66574 Kennedy Pass','(447) 4376343'),(4,'Tilly','Rippon',NULL,'80674 Stone Corner Parkway','(651) 5551112'),(5,'Kacie','Sedger','[email protected]','6 Ohio Park','(925) 3775774'),(6,'Jason','Deans','[email protected]','16373 Boyd Terrace','(750) 3408755'),(7,'Fancie','Rennebach','[email protected]','2 Hanover Plaza','(376) 2449538'),(8,'Tully','Hoopper','[email protected]','65345 Eggendart Avenue','(576) 4549139'),(9,'Craggie','Mayward','[email protected]','0007 Old Gate Street','(404) 4234094'),(10,'Kerri','Calrow','[email protected]','39 Mariners Cove Avenue','(816) 5016529'),(11,'Melba','Sear','[email protected]','7720 Huxley Circle','(706) 9967904'),(12,'Shellysheldon','Zimmer',NULL,'1271 Tony Plaza','(398) 8332084'),(13,'Jorey','Twamley','[email protected]','0 Farwell Junction','(621) 4992051'),(14,'Meghan','McManus','[email protected]','6687 Huxley Pass','(110) 3081875'),(15,'Oren','Barthropp',NULL,'07709 Village Circle','(670) 1962672'),(16,'Alexia','Rendell','[email protected]','2766 Debra Hill','(841) 3861980'),(17,'Ollie','Mallabone','[email protected]','9126 Messerschmidt Lane','(570) 2574740'),(18,'Maryjane','Mynott','[email protected]','959 Huxley Way','(560) 4567678'),(19,'Serge','Bortolomei','[email protected]','481 Division Crossing','(543) 5875670'),(20,'Dermot','Panchin','[email protected]','5124 Blue Bill Park Lane','(766) 5945889'),(21,'Nerti','Berzon',NULL,'3103 Bultman Street','(767) 7503877'),(22,'Millard','Bodleigh','[email protected]','924 Waubesa Junction','(779) 6832010'),(23,'Shandra','Prendeguest','[email protected]','3 Mayer Parkway','(499) 1696863'),(24,'Chrissie','Hunting','[email protected]','018 Pierstorff Trail','(200) 6979116'),(25,'Linn','Polson',NULL,'1 Drewry Junction','(363) 2718709'),(26,'Carmine','Melhuish','[email protected]','3635 Lindbergh Plaza','(453) 2228512'),(27,'Chelsie','Tabbernor','[email protected]','76775 Kinsman Street','(556) 6960386'),(28,'Stafford','Scotter','[email protected]','87014 Del Mar Trail','(886) 3303639'),(29,'Roley','Damrel','[email protected]','42 Summerview Terrace','(378) 9269262'),(30,'Marylin','Lillistone',NULL,'53 Mayfield Road','(909) 7131619'),(31,'Augy','Friday',NULL,'82164 Spohn Junction','(846) 4360427'),(32,'Bendite','Halwell','[email protected]','47049 Mallard Drive','(535) 9144296'),(33,'Sergei','Pirouet','[email protected]','8 Packers Point','(518) 5796084'),(34,'Nanon','Crookshank','[email protected]','874 Daystar Way','(171) 8322312'),(35,'Neall','Nary','[email protected]','47919 Scott Park','(253) 2179465'),(36,'Holden','Mangeon','[email protected]','7918 Esker Street','(922) 6285454'),(37,'Jessamine','Spurnier','[email protected]','589 Sunfield Plaza','(155) 7350620'),(38,'Cesya','Fluin','[email protected]','7 John Wall Terrace','(700) 9613725'),(39,'Shamus','Elcum','[email protected]','790 Cottonwood Point','(765) 6399622'),(40,'Dunc','Laydon',NULL,'84 Spaight Crossing','(182) 1391268'),(41,'Katerina','De Maria',NULL,'888 Valley Edge Plaza','(815) 1910995'),(42,'Susan','L\'Episcopi','[email protected]','301 Elgar Way','(294) 6511108'),(43,'Peg','Staddom','[email protected]','57835 Meadow Valley Pass','(121) 3322030'),(44,'Steven','Fevier','[email protected]','47609 Superior Lane','(408) 5630200'),(45,'Moshe','Snell','[email protected]','27 Hooker Crossing','(777) 8765634'),(46,'Maighdiln','Hutfield','[email protected]','3418 Mosinee Park','(460) 8152343'),(47,'Caspar','Kuhn','[email protected]','38324 Melby Circle','(334) 1492153'),(48,'Sarita','Lowcock','[email protected]','6503 Monica Alley','(837) 4543090'),(49,'Aigneis','Lempke','[email protected]','25 Springs Center','(458) 6002590'),(50,'Donaugh','Huckerby','[email protected]','20 Pepper Wood Point','(925) 2339881'),(51,'Trumaine','Ruffler','[email protected]','303 Meadow Vale Way','(880) 1748887'),(52,'Tawsha','Battie','[email protected]','1 Hoffman Road','(360) 2988473'),(53,'Adriane','Hinks','[email protected]','68 Delladonna Alley','(612) 5689332'),(54,'Julita','Sowood','[email protected]','81891 Fisk Court','(251) 2590151'),(55,'Eartha','Barkus','[email protected]','698 Sauthoff Trail','(620) 6142973'),(56,'Bibby','Masterson','[email protected]','961 Fairview Drive','(900) 9104200'),(57,'Farr','Lambarth',NULL,'876 Onsgard Lane','(183) 4085252'),(58,'Tam','Snasel','[email protected]','0 Gerald Center','(589) 3320956'),(59,'Elliott','Eades','[email protected]','68463 Cardinal Place','(411) 6655597'),(60,'Dulcie','Thomann',NULL,'0252 Prentice Drive','(946) 8697008'),(61,'Pennie','Teall','[email protected]','63 Blaine Center','(634) 2055636'),(62,'Horton','Greenig',NULL,'9 Eastlawn Avenue','(390) 5739999'),(63,'Bonita','Palfree','[email protected]','5446 Farragut Circle','(934) 1523762'),(64,'Valry','Hirjak','[email protected]','02173 Green Drive','(257) 8337839'),(65,'Gardie','Hoyer','[email protected]','8946 Kim Circle','(496) 4312622'),(66,'Elana','Ogilvie','[email protected]','45 Kipling Junction','(208) 7101745'),(67,'Kelsey','Howett',NULL,'89 North Alley','(348) 9160561'),(68,'Tallulah','Beresford','[email protected]','29780 Monica Lane','(304) 1238950'),(69,'Cleve','Goodbairn',NULL,'4 Lillian Junction','(821) 8213692'),(70,'Hayes','Gillis','[email protected]','4364 Old Gate Park','(690) 2859300'),(71,'Brenna','Bellwood','[email protected]','172 Summer Ridge Hill','(653) 8770095'),(72,'Clare','Freiburger','[email protected]','742 Nelson Trail','(584) 1470147'),(73,'Reece','Bevis',NULL,'4 Service Pass','(573) 6673000'),(74,'Harwilll','Whiskin','[email protected]','12570 Sundown Pass','(617) 4831817'),(75,'Audry','Kobpa',NULL,'3 Westerfield Court','(198) 1575076'),(76,'Kris','Spinetti',NULL,'890 Kipling Crossing','(749) 7844105'),(77,'Moore','Gouinlock','[email protected]','2 Sherman Drive','(774) 8929480'),(78,'Madeline','Briscoe','[email protected]','25 Spaight Point','(165) 6012104'),(79,'Hanan','Philippeaux',NULL,'18007 Veith Pass','(879) 6011794'),(80,'Arnie','Labrenz','[email protected]','6 Bayside Way','(357) 9171024'),(81,'Robinet','Janiszewski','[email protected]','554 Alpine Parkway','(793) 7305267'),(82,'Lana','Spellward','[email protected]','1 Cordelia Alley','(283) 9752504'),(83,'Goran','Rotte','[email protected]','217 Anzinger Junction','(315) 5021700'),(84,'Cori','Hubble',NULL,'343 Butterfield Lane','(305) 9104557'),(85,'Cullen','Dempsey',NULL,'62027 Pearson Hill','(729) 7799516'),(86,'Leona','Ballinghall',NULL,'471 Farragut Parkway','(971) 9649445'),(87,'Deanne','Robertet','[email protected]','66812 Messerschmidt Lane','(134) 6629228'),(88,'Devy','Crothers','[email protected]','01 Holy Cross Road','(550) 9224805'),(89,'Sandie','Slimme','[email protected]','96 Laurel Center','(520) 5955844'),(90,'Reuven','Chazerand','[email protected]','287 Norway Maple Plaza','(690) 4150135'),(91,'Louisa','McDirmid','[email protected]','2 Trailsway Parkway','(946) 2329630'),(92,'Marion','Siddell','[email protected]','5217 Hanson Road','(290) 6491853'),(93,'Verna','Anslow','[email protected]','11179 Melvin Way','(742) 7591818'),(94,'Bill','Younge','[email protected]','2113 Arizona Lane','(821) 8258238'),(95,'Kipp','MacCombe','[email protected]','43 Corben Crossing','(896) 9462991'),(96,'Gwyneth','Stoop','[email protected]','7 Melvin Junction','(343) 8812329'),(97,'Lida','Woodcock',NULL,'464 Bashford Trail','(530) 1737589'),(98,'Sibyl','Sherwood','[email protected]','170 Lakewood Gardens Center','(390) 1544487'),(99,'Bailie','Swancock',NULL,'509 Welch Trail','(402) 3168488'),(100,'Bonnie','Caird','[email protected]','595 Anderson Street','(648) 2679439');
/*!40000 ALTER TABLE `employees` ENABLE KEYS */;
UNLOCK TABLES;
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
-- Dump completed on 2023-09-09 12:10:19