C#宿舍管理系统数据库
/*
Navicat MySQL Data Transfer
Source Server : workplace
Source Server Version : 50610
Source Host : 127.0.0.1:3306
Source Database : dormdb
Target Server Type : MYSQL
Target Server Version : 50610
File Encoding : 65001
Date: 2019-08-13 10:29:35
*/
create database mydormdb;
use mydormdb;
SET FOREIGN_KEY_CHECKS=0;
– Table structure for building
DROP TABLE IF EXISTS building
;
CREATE TABLE building
(
buildId
int(11) NOT NULL AUTO_INCREMENT,
buildName
varchar(30) DEFAULT NULL,
dormCount
int(11) DEFAULT NULL,
dormFloor
int(11) DEFAULT NULL,
PRIMARY KEY (buildId
)
) ENGINE=InnoDB AUTO_INCREMENT=13 DEFAULT CHARSET=utf8;
– Records of building
INSERT INTO building
VALUES (‘1’, ‘崇明楼ÿ
文章来源: aaaedu.blog.csdn.net,作者:tea_year,版权归原作者所有,如需转载,请联系作者。
原文链接:aaaedu.blog.csdn.net/article/details/109133801
- 点赞
- 收藏
- 关注作者
评论(0)