1 Star 9 Fork 1

涂鸦怪兽/javaweb_基于BS的校园失物招领系统

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
new.sql 2.61 KB
一键复制 编辑 原始数据 按行查看 历史
涂鸦怪兽 提交于 2021-03-18 21:03 . 数据库
/*
SQLyog Ultimate v13.1.1 (64 bit)
MySQL - 10.1.32-MariaDB : Database - new
*********************************************************************
*/
/*!40101 SET NAMES utf8 */;
/*!40101 SET SQL_MODE=''*/;
/*!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 */;
CREATE DATABASE /*!32312 IF NOT EXISTS*/`new` /*!40100 DEFAULT CHARACTER SET utf8 */;
USE `new`;
/*Table structure for table `apply` */
DROP TABLE IF EXISTS `apply`;
CREATE TABLE `apply` (
`applyId` int(11) NOT NULL AUTO_INCREMENT,
`userId` int(11) DEFAULT NULL,
`applyName` varchar(20) DEFAULT NULL,
`applyAddress` varchar(100) DEFAULT NULL,
`applyExplain` varchar(100) DEFAULT NULL,
PRIMARY KEY (`applyId`)
) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8;
/*Data for the table `apply` */
insert into `apply`(`applyId`,`userId`,`applyName`,`applyAddress`,`applyExplain`) values
(6,9,'手柄','在四号楼拾取','黑色Xbox');
/*Table structure for table `good` */
DROP TABLE IF EXISTS `good`;
CREATE TABLE `good` (
`goodId` int(11) NOT NULL AUTO_INCREMENT,
`userId` int(11) DEFAULT NULL,
`goodName` varchar(20) DEFAULT NULL,
`goodAddress` varchar(100) DEFAULT NULL,
`goodExplain` varchar(100) DEFAULT NULL,
PRIMARY KEY (`goodId`)
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8;
/*Data for the table `good` */
insert into `good`(`goodId`,`userId`,`goodName`,`goodAddress`,`goodExplain`) values
(5,9,NULL,'5号楼门前','金钥匙');
/*Table structure for table `user` */
DROP TABLE IF EXISTS `user`;
CREATE TABLE `user` (
`userId` int(11) NOT NULL AUTO_INCREMENT,
`userName` varchar(20) DEFAULT NULL,
`userPhone` varchar(20) DEFAULT NULL,
`userPassword` varchar(20) DEFAULT NULL,
`userQQ` varchar(20) DEFAULT NULL,
`userAddress` varchar(100) DEFAULT NULL,
PRIMARY KEY (`userId`)
) ENGINE=InnoDB AUTO_INCREMENT=10 DEFAULT CHARSET=utf8;
/*Data for the table `user` */
insert into `user`(`userId`,`userName`,`userPhone`,`userPassword`,`userQQ`,`userAddress`) values
(1,'管理员','1','1','000000','无'),
(8,'王永超','xxx9991xxxx','123456789','xx317xx3','4-320'),
(9,'凃巧玲','xxx9957xxxx','tql123456789','xx76xxxx','0-520');
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/tuyaguaishou/javaweb.git
git@gitee.com:tuyaguaishou/javaweb.git
tuyaguaishou
javaweb
javaweb_基于BS的校园失物招领系统
master

搜索帮助