Guest User

Untitled

a guest
Apr 24th, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.29 KB | None | 0 0
  1. -- MySQL dump 10.13 Distrib 5.7.21, for osx10.13 (x86_64)
  2. --
  3. -- Host: localhost Database: foodinparis
  4. -- ------------------------------------------------------
  5. -- Server version 5.7.21
  6.  
  7. /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
  8. /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
  9. /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
  10. /*!40101 SET NAMES utf8 */;
  11. /*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
  12. /*!40103 SET TIME_ZONE='+00:00' */;
  13. /*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
  14. /*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
  15. /*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
  16. /*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
  17.  
  18. --
  19. -- Current Database: `foodinparis`
  20. --
  21.  
  22. CREATE DATABASE /*!32312 IF NOT EXISTS*/ `foodinparis` /*!40100 DEFAULT CHARACTER SET utf8 */;
  23.  
  24. USE `foodinparis`;
  25.  
  26. --
  27. -- Table structure for table `contact`
  28. --
  29.  
  30. DROP TABLE IF EXISTS `contact`;
  31. /*!40101 SET @saved_cs_client = @@character_set_client */;
  32. /*!40101 SET character_set_client = utf8 */;
  33. CREATE TABLE `contact` (
  34. `id` smallint(5) unsigned NOT NULL AUTO_INCREMENT,
  35. `nom` varchar(50) NOT NULL,
  36. `prenom` varchar(50) NOT NULL,
  37. `age` int(2) NOT NULL,
  38. `lieu_de_residence` varchar(100) NOT NULL,
  39. PRIMARY KEY (`id`)
  40. ) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8;
  41. /*!40101 SET character_set_client = @saved_cs_client */;
  42.  
  43. --
  44. -- Dumping data for table `contact`
  45. --
  46.  
  47. LOCK TABLES `contact` WRITE;
  48. /*!40000 ALTER TABLE `contact` DISABLE KEYS */;
  49. INSERT INTO `contact` VALUES (1,'sammy','l'ami',35,'Bussy'),(2,'Guillaume','nobis',37,'Paris'),(3,'Lorie','Au riz',57,'Paris'),(4,'Google','est mon ami',99,'San Francisco'),(5,'gargamel','la gamelle',76,'schtroumph city');
  50. /*!40000 ALTER TABLE `contact` ENABLE KEYS */;
  51. UNLOCK TABLES;
  52. /*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
  53.  
  54. /*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
  55. /*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
  56. /*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
  57. /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
  58. /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
  59. /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
  60. /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
  61.  
  62. -- Dump completed on 2018-04-17 12:37:02
Add Comment
Please, Sign In to add comment