forked from xunge/Echarts-dynamic-data
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsql.sql
More file actions
25 lines (22 loc) · 725 Bytes
/
sql.sql
File metadata and controls
25 lines (22 loc) · 725 Bytes
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
CREATE SCHEMA `emp` ;
--
-- Table structure for table `echarts`
--
DROP TABLE IF EXISTS `echarts`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `echarts` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(45) DEFAULT NULL,
`num` int(11) DEFAULT '0',
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `echarts`
--
LOCK TABLES `echarts` WRITE;
/*!40000 ALTER TABLE `echarts` DISABLE KEYS */;
INSERT INTO `echarts` VALUES (1,'chenshan',9),(2,'xie',3),(3,'wazi',6);
/*!40000 ALTER TABLE `echarts` ENABLE KEYS */;
UNLOCK TABLES;