-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmohit-crud.sql
More file actions
44 lines (40 loc) · 2.08 KB
/
mohit-crud.sql
File metadata and controls
44 lines (40 loc) · 2.08 KB
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
-- --------------------------------------------------------
-- Host: 127.0.0.1
-- Server version: 8.0.30 - MySQL Community Server - GPL
-- Server OS: Win64
-- HeidiSQL Version: 12.1.0.6537
-- --------------------------------------------------------
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET NAMES utf8 */;
/*!50503 SET NAMES utf8mb4 */;
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
/*!40103 SET TIME_ZONE='+00:00' */;
/*!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 */;
-- Dumping structure for table mohit-crud.users
CREATE TABLE IF NOT EXISTS `users` (
`id` int unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(50) NOT NULL DEFAULT '0',
`email` varchar(50) NOT NULL DEFAULT '0',
`age` int NOT NULL DEFAULT '0',
`status` varchar(50) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=17 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
-- Dumping data for table mohit-crud.users: ~0 rows (approximately)
INSERT INTO `users` (`id`, `name`, `email`, `age`, `status`) VALUES
(1, 'Mohit Kohli', 'mohit@gmail.com', 24, 'active'),
(2, 'Rohit', 'admin@admin.com', 22, 'active'),
(6, 'David Hayes', 'david@gmail.com', 24, 'active'),
(8, 'Vishant', 'vishant@gmail.com', 23, 'active'),
(9, 'Udit', 'udit@gmail.com', 23, 'active'),
(10, 'Chakshu Yadav', 'chakshu@gmail.com', 23, 'active'),
(12, 'Email', 'gfh@gmail.com', 23, 'active'),
(13, 'David Hayes', 'admin@admin.com', 76, 'inactive'),
(14, 'Email', 'sonalibhandari913@gmail.com', 22, 'active'),
(16, 'Header', 'sonalibhandari913@gmail.com', 1212, 'active');
/*!40103 SET TIME_ZONE=IFNULL(@OLD_TIME_ZONE, 'system') */;
/*!40101 SET SQL_MODE=IFNULL(@OLD_SQL_MODE, '') */;
/*!40014 SET FOREIGN_KEY_CHECKS=IFNULL(@OLD_FOREIGN_KEY_CHECKS, 1) */;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40111 SET SQL_NOTES=IFNULL(@OLD_SQL_NOTES, 1) */;