forked from Show-Me-the-Code/python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path0024.sql
More file actions
67 lines (54 loc) · 1.66 KB
/
0024.sql
File metadata and controls
67 lines (54 loc) · 1.66 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
# SQL-Front 5.1 (Build 4.16)
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE */;
/*!40101 SET SQL_MODE='NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES */;
/*!40103 SET SQL_NOTES='ON' */;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS */;
/*!40014 SET UNIQUE_CHECKS=0 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS */;
/*!40014 SET FOREIGN_KEY_CHECKS=0 */;
# Host: localhost Database: 0024
# ------------------------------------------------------
# Server version 5.5.38
DROP DATABASE IF EXISTS `0024`;
CREATE DATABASE `0024` /*!40100 DEFAULT CHARACTER SET utf8 */;
USE `0024`;
#
# Source for table code
#
DROP TABLE IF EXISTS `code`;
CREATE TABLE `code` (
`id` int(20) NOT NULL DEFAULT '0',
`to` text NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
#
# Dumping data for table code
#
LOCK TABLES `code` WRITE;
/*!40000 ALTER TABLE `code` DISABLE KEYS */;
INSERT INTO `code` VALUES (13,'haiohpd');
INSERT INTO `code` VALUES (14,'daduwwg');
INSERT INTO `code` VALUES (9,'7');
INSERT INTO `code` VALUES (11,'9');
/*!40000 ALTER TABLE `code` ENABLE KEYS */;
UNLOCK TABLES;
#
# Source for table max
#
DROP TABLE IF EXISTS `max`;
CREATE TABLE `max` (
`pro` varchar(255) DEFAULT NULL,
`max` int(11) NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
#
# Dumping data for table max
#
LOCK TABLES `max` WRITE;
/*!40000 ALTER TABLE `max` DISABLE KEYS */;
INSERT INTO `max` VALUES ('max',15);
/*!40000 ALTER TABLE `max` ENABLE KEYS */;
UNLOCK TABLES;
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;