|
|
|
@ -0,0 +1,106 @@
|
|
|
|
|
-- MySQL dump 10.13 Distrib 8.0.13, for Win64 (x86_64)
|
|
|
|
|
--
|
|
|
|
|
-- Host: localhost Database: 真香
|
|
|
|
|
-- ------------------------------------------------------
|
|
|
|
|
-- Server version 8.0.13
|
|
|
|
|
|
|
|
|
|
/*!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 */;
|
|
|
|
|
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 `book`
|
|
|
|
|
--
|
|
|
|
|
|
|
|
|
|
DROP TABLE IF EXISTS `book`;
|
|
|
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
|
|
|
SET character_set_client = utf8 ;
|
|
|
|
|
CREATE TABLE `book` (
|
|
|
|
|
`book_id` int(20) NOT NULL,
|
|
|
|
|
`book_name` varchar(45) NOT NULL,
|
|
|
|
|
`author` varchar(20) NOT NULL,
|
|
|
|
|
`book_sort` varchar(20) NOT NULL,
|
|
|
|
|
`book_num` int(5) NOT NULL,
|
|
|
|
|
PRIMARY KEY (`book_id`,`book_name`)
|
|
|
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
|
|
|
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|
|
|
|
|
|
|
|
|
--
|
|
|
|
|
-- Dumping data for table `book`
|
|
|
|
|
--
|
|
|
|
|
|
|
|
|
|
LOCK TABLES `book` WRITE;
|
|
|
|
|
/*!40000 ALTER TABLE `book` DISABLE KEYS */;
|
|
|
|
|
INSERT INTO `book` VALUES (1,'软件综合实践二','王胜春','实践类',0),(2,'软件工程','张锦','理论类',0),(3,'CSAPP','窦亚玲','理论类',0),(4,'系统分析与设计','蒋少华','理论类',0),(5,'编译原理','肖伟','理论类',0),(6,'网络安全','王六平','理论类',0);
|
|
|
|
|
/*!40000 ALTER TABLE `book` ENABLE KEYS */;
|
|
|
|
|
UNLOCK TABLES;
|
|
|
|
|
|
|
|
|
|
--
|
|
|
|
|
-- Table structure for table `borrowrecord`
|
|
|
|
|
--
|
|
|
|
|
|
|
|
|
|
DROP TABLE IF EXISTS `borrowrecord`;
|
|
|
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
|
|
|
SET character_set_client = utf8;
|
|
|
|
|
CREATE TABLE `borrowrecord` (
|
|
|
|
|
`s_id` int(20) NOT NULL,
|
|
|
|
|
`book_id` int(20) NOT NULL,
|
|
|
|
|
`s_name` varchar(20) NOT NULL,
|
|
|
|
|
`book_name` varchar(20) NOT NULL,
|
|
|
|
|
`borrowtime` varchar(45) NOT NULL,
|
|
|
|
|
`senttime` varchar(45) NOT NULL,
|
|
|
|
|
PRIMARY KEY (`s_id`)
|
|
|
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
|
|
|
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|
|
|
|
|
|
|
|
|
--
|
|
|
|
|
-- Dumping data for table `borrowrecord`
|
|
|
|
|
--
|
|
|
|
|
|
|
|
|
|
LOCK TABLES `borrowrecord` WRITE;
|
|
|
|
|
/*!40000 ALTER TABLE `borrowrecord` DISABLE KEYS */;
|
|
|
|
|
/*!40000 ALTER TABLE `borrowrecord` ENABLE KEYS */;
|
|
|
|
|
UNLOCK TABLES;
|
|
|
|
|
|
|
|
|
|
--
|
|
|
|
|
-- Table structure for table `student`
|
|
|
|
|
--
|
|
|
|
|
|
|
|
|
|
DROP TABLE IF EXISTS `student`;
|
|
|
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
|
|
|
SET character_set_client = utf8;
|
|
|
|
|
CREATE TABLE `student` (
|
|
|
|
|
`s_id` int(20) NOT NULL,
|
|
|
|
|
`s_password` varchar(20) NOT NULL,
|
|
|
|
|
`s_name` varchar(20) NOT NULL,
|
|
|
|
|
PRIMARY KEY (`s_id`)
|
|
|
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
|
|
|
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|
|
|
|
|
|
|
|
|
--
|
|
|
|
|
-- Dumping data for table `student`
|
|
|
|
|
--
|
|
|
|
|
|
|
|
|
|
LOCK TABLES `student` WRITE;
|
|
|
|
|
/*!40000 ALTER TABLE `student` DISABLE KEYS */;
|
|
|
|
|
INSERT INTO `student` VALUES (20160801,'123456','xzy'),(20160802,'123456','zxy'),(20160803,'123456','myj'),(20160804,'123456','zjh');
|
|
|
|
|
/*!40000 ALTER TABLE `student` 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 2019-01-09 10:40:29
|