You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
test1/admins.sql

43 lines
1.6 KiB

/*
Navicat MySQL Data Transfer
Source Server : he
Source Server Version : 50636
Source Host : localhost:3306
Source Database : hlb
Target Server Type : MYSQL
Target Server Version : 50636
File Encoding : 65001
Date: 2024-06-28 13:12:37
*/
SET FOREIGN_KEY_CHECKS=0;
-- ----------------------------
-- Table structure for admins
-- ----------------------------
DROP TABLE IF EXISTS `admins`;
CREATE TABLE `admins` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`adminName` varchar(20) NOT NULL COMMENT '管理员的名字',
`adminPwd` varchar(20) NOT NULL COMMENT '密码',
`realName` varchar(20) NOT NULL COMMENT '真实的名字',
`telephone` varchar(20) NOT NULL COMMENT '电话',
`Email` varchar(20) NOT NULL,
`birthday` date NOT NULL,
`sex` varchar(3) NOT NULL,
`pic` varchar(100) DEFAULT 'a.png',
`remark` varchar(255) NOT NULL,
PRIMARY KEY (`id`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC;
-- ----------------------------
-- Records of admins
-- ----------------------------
INSERT INTO `admins` VALUES ('1', 'tzp', '11', '123', '15797959509', '15281210084', '2000-12-11', '', 'a1.png', 'asd');
INSERT INTO `admins` VALUES ('2', 'xm', '11', '111', '12345678999', '15893336489', '2023-12-13', '', 'a.png', 'dasdasd');
INSERT INTO `admins` VALUES ('3', 'bc', '11', '122', '12345678766', '1234567876@qq.com', '2023-12-12', '', 'a2.png', 'adsasd');
INSERT INTO `admins` VALUES ('4', 'cc', '11', '122', '12345678766', '1234567876@qq.com', '2023-12-12', '', 'a3.png', 'dasdasd');