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/apply.sql

43 lines
1.5 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:13:20
*/
SET FOREIGN_KEY_CHECKS=0;
-- ----------------------------
-- Table structure for apply
-- ----------------------------
DROP TABLE IF EXISTS `apply`;
CREATE TABLE `apply` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(10) NOT NULL,
`email` varchar(20) NOT NULL,
`age` int(11) NOT NULL,
`telephone` varchar(12) NOT NULL,
`message` varchar(100) NOT NULL,
`applyTime` date NOT NULL,
`state` int(11) DEFAULT '2',
PRIMARY KEY (`id`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC;
-- ----------------------------
-- Records of apply
-- ----------------------------
INSERT INTO `apply` VALUES ('2', 'zeh', '242523481@qq.com', '21', '87675475465', '市场', '2019-09-04', '3');
INSERT INTO `apply` VALUES ('3', 'jg', '32432549281@qq.com', '41', '45654656', '434343', '2019-09-05', '2');
INSERT INTO `apply` VALUES ('4', 'xyf', '32423549281@qq.com', '45', '15797959509', '四川', '2019-09-05', '2');
INSERT INTO `apply` VALUES ('5', 'lwj', '3213432432@qq.com', '23', '123211432432', 'sc', '2023-11-02', '2');
INSERT INTO `apply` VALUES ('6', '唐智鹏', 'tzp15281210084', '18', '15281210084', '我想了解这次仓库的衣服给我放在哪里的', '2024-06-15', '2');
INSERT INTO `apply` VALUES ('7', 'yx', 'q', '2', 'q', '', '2024-06-19', '2');