这个就是我的你的他的啥

insert into student values(0,'2024-02-25 10:10:10','赵灵儿','123','15612345678',16,'女','逍遥哥哥,你终于找到我了');
insert into student values(0,'2024-02-25 10:10:10','王语嫣','123','15612345678',17,'女','你好');
insert into student values(0,'2024-02-25 10:10:10','龙姑娘','123','15612345678',22,'女','我想和过过过儿过过过的日子');
insert into student values(0,'2024-02-25 10:10:10','杨过','123','15612345678',18,'男','一遇杨过误终身');
insert into student values(0,'2024-02-25 10:10:10','杨逍','123','15612345678',27,'男','杨过和程英的大儿子');
insert into student (userName,age,introduce)values('黄衣女子',26,'杨过与龙姑娘的大女儿');

/*
 Navicat Premium Data Transfer

 Source Server         : Mylink
 Source Server Type    : MySQL
 Source Server Version : 50731
 Source Host           : localhost:3306
 Source Schema         : schooldb

 Target Server Type    : MySQL
 Target Server Version : 50731
 File Encoding         : 65001

 Date: 25/03/2024 11:32:34
*/

SET NAMES utf8mb4;
SET FOREIGN_KEY_CHECKS = 0;

-- ----------------------------
-- Table structure for student
-- ----------------------------
DROP TABLE IF EXISTS `student`;
CREATE TABLE `student`  (
  `id` int(11) NOT NULL AUTO_INCREMENT COMMENT '学号',
  `createDate` datetime(0) NULL DEFAULT NULL,
  `userName` varchar(20) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL,
  `pwd` varchar(36) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL,
  `phone` varchar(11) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL,
  `age` tinyint(3) NULL DEFAULT NULL,
  `sex` char(2) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT '男',
  `introduce` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL,
  PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 174 CHARACTER SET = utf8 COLLATE = utf8_general_ci ROW_FORMAT = Dynamic;

-- ----------------------------
-- Records of student
-- ----------------------------
INSERT INTO `student` VALUES (1, '2024-02-25 10:10:10', '赵灵儿', '123', '15612345678', 16, '女', '逍遥哥哥,你终于找到我了');
INSERT INTO `student` VALUES (2, '2024-02-25 10:10:10', '赵灵儿', '123', '15612345678', 16, '女', '逍遥哥哥,你终于找到我了');
INSERT INTO `student` VALUES (3, '2024-02-25 10:10:10', '王语嫣', '123', '15612345678', 17, '女', '你好');
INSERT INTO `student` VALUES (4, '2024-02-25 10:10:10', '龙姑娘', '123', '15612345678', 22, '女', '我想和过过过儿过过过的日子');
INSERT INTO `student` VALUES (5, '2024-02-25 10:10:10', '杨过', '123', '15612345678', 18, '男', '一遇杨过误终身');
INSERT INTO `student` VALUES (6, '2024-02-25 10:10:10', '杨逍', '123', '15612345678', 27, '男', '杨过和程英的大儿子');
INSERT INTO `student` VALUES (7, '2024-02-25 10:10:10', '黄衣女子', '123', '15612345678', 26, '女', '杨过与龙姑娘的大女儿');
INSERT INTO `student` VALUES (8, '2024-02-25 10:10:10', '赵灵儿', '123', '15612345678', 16, '女', '逍遥哥哥,你终于找到我了');
INSERT INTO `student` VALUES (9, '2024-02-25 10:10:10', '王语嫣', '123', '15612345678', 17, '女', '你好');
INSERT INTO `student` VALUES (10, '2024-02-25 10:10:10', '龙姑娘', '123', '15612345678', 22, '女', '我想和过过过儿过过过的日子');
INSERT INTO `student` VALUES (11, '2024-02-25 10:10:10', '杨过', '123', '15612345678', 18, '男', '一遇杨过误终身');
INSERT INTO `student` VALUES (12, '2024-02-25 10:10:10', '杨逍', '123', '15612345678', 27, '男', '杨过和程英的大儿子');
INSERT INTO `student` VALUES (13, '2024-02-25 10:10:10', '赵灵儿', '123', '15612345678', 16, '女', '逍遥哥哥,你终于找到我了');
INSERT INTO `student` VALUES (14, '2024-02-25 10:10:10', '王语嫣', '123', '15612345678', 17, '女', '你好');
INSERT INTO `student` VALUES (15, '2024-02-25 10:10:10', '龙姑娘', '123', '15612345678', 22, '女', '我想和过过过儿过过过的日子');
INSERT INTO `student` VALUES (16, '2024-02-25 10:10:10', '杨过', '123', '15612345678', 18, '男', '一遇杨过误终身');
INSERT INTO `student` VALUES (17, '2024-02-25 10:10:10', '杨逍', '123', '15612345678', 27, '男', '杨过和程英的大儿子');
INSERT INTO `student` VALUES (18, '2024-02-25 10:10:10', '赵灵儿', '123', '15612345678', 16, '女', '逍遥哥哥,你终于找到我了');
INSERT INTO `student` VALUES (19, '2024-02-25 10:10:10', '王语嫣', '123', '15612345678', 17, '女', '你好');
INSERT INTO `student` VALUES (20, '2024-02-25 10:10:10', '龙姑娘', '123', '15612345678', 22, '女', '我想和过过过儿过过过的日子');
INSERT INTO `student` VALUES (21, '2024-02-25 10:10:10', '杨过', '123', '15612345678', 18, '男', '一遇杨过误终身');
INSERT INTO `student` VALUES (22, '2024-02-25 10:10:10', '杨逍', '123', '15612345678', 27, '男', '杨过和程英的大儿子');
INSERT INTO `student` VALUES (23, '2024-02-25 10:10:10', '赵灵儿', '123', '15612345678', 16, '女', '逍遥哥哥,你终于找到我了');
INSERT INTO `student` VALUES (24, '2024-02-25 10:10:10', '王语嫣', '123', '15612345678', 17, '女', '你好');
INSERT INTO `student` VALUES (25, '2024-02-25 10:10:10', '龙姑娘', '123', '15612345678', 22, '女', '我想和过过过儿过过过的日子');
INSERT INTO `student` VALUES (26, '2024-02-25 10:10:10', '杨过', '123', '15612345678', 18, '男', '一遇杨过误终身');
INSERT INTO `student` VALUES (27, '2024-02-25 10:10:10', '杨逍', '123', '15612345678', 27, '男', '杨过和程英的大儿子');
INSERT INTO `student` VALUES (28, '2024-02-25 10:10:10', '赵灵儿', '123', '15612345678', 16, '女', '逍遥哥哥,你终于找到我了');
INSERT INTO `student` VALUES (29, '2024-02-25 10:10:10', '王语嫣', '123', '15612345678', 17, '女', '你好');
INSERT INTO `student` VALUES (30, '2024-02-25 10:10:10', '龙姑娘', '123', '15612345678', 22, '女', '我想和过过过儿过过过的日子');
INSERT INTO `student` VALUES (31, '2024-02-25 10:10:10', '杨过', '123', '15612345678', 18, '男', '一遇杨过误终身');
INSERT INTO `student` VALUES (32, '2024-02-25 10:10:10', '杨逍', '123', '15612345678', 27, '男', '杨过和程英的大儿子');
INSERT INTO `student` VALUES (33, '2024-02-25 10:10:10', '赵灵儿', '123', '15612345678', 16, '女', '逍遥哥哥,你终于找到我了');
INSERT INTO `student` VALUES (34, '2024-02-25 10:10:10', '王语嫣', '123', '15612345678', 17, '女', '你好');
INSERT INTO `student` VALUES (35, '2024-02-25 10:10:10', '龙姑娘', '123', '15612345678', 22, '女', '我想和过过过儿过过过的日子');
INSERT INTO `student` VALUES (36, '2024-02-25 10:10:10', '杨过', '123', '15612345678', 18, '男', '一遇杨过误终身');
INSERT INTO `student` VALUES (37, '2024-02-25 10:10:10', '杨逍', '123', '15612345678', 27, '男', '杨过和程英的大儿子');
INSERT INTO `student` VALUES (38, '2024-02-25 10:10:10', '赵灵儿', '123', '15612345678', 16, '女', '逍遥哥哥,你终于找到我了');
INSERT INTO `student` VALUES (39, '2024-02-25 10:10:10', '王语嫣', '123', '15612345678', 17, '女', '你好');
INSERT INTO `student` VALUES (40, '2024-02-25 10:10:10', '龙姑娘', '123', '15612345678', 22, '女', '我想和过过过儿过过过的日子');
INSERT INTO `student` VALUES (41, '2024-02-25 10:10:10', '杨过', '123', '15612345678', 18, '男', '一遇杨过误终身');
INSERT INTO `student` VALUES (42, '2024-02-25 10:10:10', '杨逍', '123', '15612345678', 27, '男', '杨过和程英的大儿子');
INSERT INTO `student` VALUES (43, '2024-02-25 10:10:10', '赵灵儿', '123', '15612345678', 16, '女', '逍遥哥哥,你终于找到我了');
INSERT INTO `student` VALUES (44, '2024-02-25 10:10:10', '王语嫣', '123', '15612345678', 17, '女', '你好');
INSERT INTO `student` VALUES (45, '2024-02-25 10:10:10', '龙姑娘', '123', '15612345678', 22, '女', '我想和过过过儿过过过的日子');
INSERT INTO `student` VALUES (46, '2024-02-25 10:10:10', '杨过', '123', '15612345678', 18, '男', '一遇杨过误终身');
INSERT INTO `student` VALUES (47, '2024-02-25 10:10:10', '杨逍', '123', '15612345678', 27, '男', '杨过和程英的大儿子');
INSERT INTO `student` VALUES (48, '2024-02-25 10:10:10', '赵灵儿', '123', '15612345678', 16, '女', '逍遥哥哥,你终于找到我了');
INSERT INTO `student` VALUES (49, '2024-02-25 10:10:10', '王语嫣', '123', '15612345678', 17, '女', '你好');
INSERT INTO `student` VALUES (50, '2024-02-25 10:10:10', '龙姑娘', '123', '15612345678', 22, '女', '我想和过过过儿过过过的日子');
INSERT INTO `student` VALUES (51, '2024-02-25 10:10:10', '杨过', '123', '15612345678', 18, '男', '一遇杨过误终身');
INSERT INTO `student` VALUES (52, '2024-02-25 10:10:10', '杨逍', '123', '15612345678', 27, '男', '杨过和程英的大儿子');
INSERT INTO `student` VALUES (53, '2024-02-25 10:10:10', '赵灵儿', '123', '15612345678', 16, '女', '逍遥哥哥,你终于找到我了');
INSERT INTO `student` VALUES (54, '2024-02-25 10:10:10', '王语嫣', '123', '15612345678', 17, '女', '你好');
INSERT INTO `student` VALUES (55, '2024-02-25 10:10:10', '龙姑娘', '123', '15612345678', 22, '女', '我想和过过过儿过过过的日子');
INSERT INTO `student` VALUES (56, '2024-02-25 10:10:10', '杨过', '123', '15612345678', 18, '男', '一遇杨过误终身');
INSERT INTO `student` VALUES (57, '2024-02-25 10:10:10', '杨逍', '123', '15612345678', 27, '男', '杨过和程英的大儿子');
INSERT INTO `student` VALUES (58, '2024-02-25 10:10:10', '赵灵儿', '123', '15612345678', 16, '女', '逍遥哥哥,你终于找到我了');
INSERT INTO `student` VALUES (59, '2024-02-25 10:10:10', '王语嫣', '123', '15612345678', 17, '女', '你好');
INSERT INTO `student` VALUES (60, '2024-02-25 10:10:10', '龙姑娘', '123', '15612345678', 22, '女', '我想和过过过儿过过过的日子');
INSERT INTO `student` VALUES (61, '2024-02-25 10:10:10', '杨过', '123', '15612345678', 18, '男', '一遇杨过误终身');
INSERT INTO `student` VALUES (62, '2024-02-25 10:10:10', '杨逍', '123', '15612345678', 27, '男', '杨过和程英的大儿子');
INSERT INTO `student` VALUES (63, '2024-02-25 10:10:10', '赵灵儿', '123', '15612345678', 16, '女', '逍遥哥哥,你终于找到我了');
INSERT INTO `student` VALUES (64, '2024-02-25 10:10:10', '王语嫣', '123', '15612345678', 17, '女', '你好');
INSERT INTO `student` VALUES (65, '2024-02-25 10:10:10', '龙姑娘', '123', '15612345678', 22, '女', '我想和过过过儿过过过的日子');
INSERT INTO `student` VALUES (66, '2024-02-25 10:10:10', '杨过', '123', '15612345678', 18, '男', '一遇杨过误终身');
INSERT INTO `student` VALUES (67, '2024-02-25 10:10:10', '杨逍', '123', '15612345678', 27, '男', '杨过和程英的大儿子');
INSERT INTO `student` VALUES (68, '2024-02-25 10:10:10', '赵灵儿', '123', '15612345678', 16, '女', '逍遥哥哥,你终于找到我了');
INSERT INTO `student` VALUES (69, '2024-02-25 10:10:10', '王语嫣', '123', '15612345678', 17, '女', '你好');
INSERT INTO `student` VALUES (70, '2024-02-25 10:10:10', '龙姑娘', '123', '15612345678', 22, '女', '我想和过过过儿过过过的日子');
INSERT INTO `student` VALUES (71, '2024-02-25 10:10:10', '杨过', '123', '15612345678', 18, '男', '一遇杨过误终身');
INSERT INTO `student` VALUES (72, '2024-02-25 10:10:10', '杨逍', '123', '15612345678', 27, '男', '杨过和程英的大儿子');
INSERT INTO `student` VALUES (73, '2024-02-25 10:10:10', '赵灵儿', '123', '15612345678', 16, '女', '逍遥哥哥,你终于找到我了');
INSERT INTO `student` VALUES (74, '2024-02-25 10:10:10', '王语嫣', '123', '15612345678', 17, '女', '你好');
INSERT INTO `student` VALUES (75, '2024-02-25 10:10:10', '龙姑娘', '123', '15612345678', 22, '女', '我想和过过过儿过过过的日子');
INSERT INTO `student` VALUES (76, '2024-02-25 10:10:10', '杨过', '123', '15612345678', 18, '男', '一遇杨过误终身');
INSERT INTO `student` VALUES (77, '2024-02-25 10:10:10', '杨逍', '123', '15612345678', 27, '男', '杨过和程英的大儿子');
INSERT INTO `student` VALUES (78, '2024-02-25 10:10:10', '赵灵儿', '123', '15612345678', 16, '女', '逍遥哥哥,你终于找到我了');
INSERT INTO `student` VALUES (79, '2024-02-25 10:10:10', '王语嫣', '123', '15612345678', 17, '女', '你好');
INSERT INTO `student` VALUES (80, '2024-02-25 10:10:10', '龙姑娘', '123', '15612345678', 22, '女', '我想和过过过儿过过过的日子');
INSERT INTO `student` VALUES (81, '2024-02-25 10:10:10', '杨过', '123', '15612345678', 18, '男', '一遇杨过误终身');
INSERT INTO `student` VALUES (82, '2024-02-25 10:10:10', '杨逍', '123', '15612345678', 27, '男', '杨过和程英的大儿子');
INSERT INTO `student` VALUES (83, '2024-02-25 10:10:10', '赵灵儿', '123', '15612345678', 16, '女', '逍遥哥哥,你终于找到我了');
INSERT INTO `student` VALUES (84, '2024-02-25 10:10:10', '王语嫣', '123', '15612345678', 17, '女', '你好');
INSERT INTO `student` VALUES (85, '2024-02-25 10:10:10', '龙姑娘', '123', '15612345678', 22, '女', '我想和过过过儿过过过的日子');
INSERT INTO `student` VALUES (86, '2024-02-25 10:10:10', '杨过', '123', '15612345678', 18, '男', '一遇杨过误终身');
INSERT INTO `student` VALUES (87, '2024-02-25 10:10:10', '杨逍', '123', '15612345678', 27, '男', '杨过和程英的大儿子');
INSERT INTO `student` VALUES (88, '2024-02-25 10:10:10', '赵灵儿', '123', '15612345678', 16, '女', '逍遥哥哥,你终于找到我了');
INSERT INTO `student` VALUES (89, '2024-02-25 10:10:10', '王语嫣', '123', '15612345678', 17, '女', '你好');
INSERT INTO `student` VALUES (90, '2024-02-25 10:10:10', '龙姑娘', '123', '15612345678', 22, '女', '我想和过过过儿过过过的日子');
INSERT INTO `student` VALUES (91, '2024-02-25 10:10:10', '杨过', '123', '15612345678', 18, '男', '一遇杨过误终身');
INSERT INTO `student` VALUES (92, '2024-02-25 10:10:10', '杨逍', '123', '15612345678', 27, '男', '杨过和程英的大儿子');
INSERT INTO `student` VALUES (93, '2024-02-25 10:10:10', '赵灵儿', '123', '15612345678', 16, '女', '逍遥哥哥,你终于找到我了');
INSERT INTO `student` VALUES (94, '2024-02-25 10:10:10', '王语嫣', '123', '15612345678', 17, '女', '你好');
INSERT INTO `student` VALUES (95, '2024-02-25 10:10:10', '龙姑娘', '123', '15612345678', 22, '女', '我想和过过过儿过过过的日子');
INSERT INTO `student` VALUES (96, '2024-02-25 10:10:10', '杨过', '123', '15612345678', 18, '男', '一遇杨过误终身');
INSERT INTO `student` VALUES (97, '2024-02-25 10:10:10', '杨逍', '123', '15612345678', 27, '男', '杨过和程英的大儿子');
INSERT INTO `student` VALUES (98, '2024-02-25 10:10:10', '赵灵儿', '123', '15612345678', 16, '女', '逍遥哥哥,你终于找到我了');
INSERT INTO `student` VALUES (99, '2024-02-25 10:10:10', '王语嫣', '123', '15612345678', 17, '女', '你好');
INSERT INTO `student` VALUES (100, '2024-02-25 10:10:10', '龙姑娘', '123', '15612345678', 22, '女', '我想和过过过儿过过过的日子');
INSERT INTO `student` VALUES (101, '2024-02-25 10:10:10', '杨过', '123', '15612345678', 18, '男', '一遇杨过误终身');
INSERT INTO `student` VALUES (102, '2024-02-25 10:10:10', '杨逍', '123', '15612345678', 27, '男', '杨过和程英的大儿子');
INSERT INTO `student` VALUES (103, '2024-02-25 10:10:10', '赵灵儿', '123', '15612345678', 16, '女', '逍遥哥哥,你终于找到我了');
INSERT INTO `student` VALUES (104, '2024-02-25 10:10:10', '王语嫣', '123', '15612345678', 17, '女', '你好');
INSERT INTO `student` VALUES (105, '2024-02-25 10:10:10', '龙姑娘', '123', '15612345678', 22, '女', '我想和过过过儿过过过的日子');
INSERT INTO `student` VALUES (106, '2024-02-25 10:10:10', '杨过', '123', '15612345678', 18, '男', '一遇杨过误终身');
INSERT INTO `student` VALUES (107, '2024-02-25 10:10:10', '杨逍', '123', '15612345678', 27, '男', '杨过和程英的大儿子');
INSERT INTO `student` VALUES (108, '2024-02-25 10:10:10', '赵灵儿', '123', '15612345678', 16, '女', '逍遥哥哥,你终于找到我了');
INSERT INTO `student` VALUES (109, '2024-02-25 10:10:10', '王语嫣', '123', '15612345678', 17, '女', '你好');
INSERT INTO `student` VALUES (110, '2024-02-25 10:10:10', '龙姑娘', '123', '15612345678', 22, '女', '我想和过过过儿过过过的日子');
INSERT INTO `student` VALUES (111, '2024-02-25 10:10:10', '杨过', '123', '15612345678', 18, '男', '一遇杨过误终身');
INSERT INTO `student` VALUES (112, '2024-02-25 10:10:10', '杨逍', '123', '15612345678', 27, '男', '杨过和程英的大儿子');
INSERT INTO `student` VALUES (113, '2024-02-25 10:10:10', '赵灵儿', '123', '15612345678', 16, '女', '逍遥哥哥,你终于找到我了');
INSERT INTO `student` VALUES (114, '2024-02-25 10:10:10', '王语嫣', '123', '15612345678', 17, '女', '你好');
INSERT INTO `student` VALUES (115, '2024-02-25 10:10:10', '龙姑娘', '123', '15612345678', 22, '女', '我想和过过过儿过过过的日子');
INSERT INTO `student` VALUES (116, '2024-02-25 10:10:10', '杨过', '123', '15612345678', 18, '男', '一遇杨过误终身');
INSERT INTO `student` VALUES (117, '2024-02-25 10:10:10', '杨逍', '123', '15612345678', 27, '男', '杨过和程英的大儿子');
INSERT INTO `student` VALUES (118, '2024-02-25 10:10:10', '赵灵儿', '123', '15612345678', 16, '女', '逍遥哥哥,你终于找到我了');
INSERT INTO `student` VALUES (119, '2024-02-25 10:10:10', '王语嫣', '123', '15612345678', 17, '女', '你好');
INSERT INTO `student` VALUES (120, '2024-02-25 10:10:10', '龙姑娘', '123', '15612345678', 22, '女', '我想和过过过儿过过过的日子');
INSERT INTO `student` VALUES (121, '2024-02-25 10:10:10', '杨过', '123', '15612345678', 18, '男', '一遇杨过误终身');
INSERT INTO `student` VALUES (122, '2024-02-25 10:10:10', '杨逍', '123', '15612345678', 27, '男', '杨过和程英的大儿子');
INSERT INTO `student` VALUES (123, '2024-02-25 10:10:10', '赵灵儿', '123', '15612345678', 16, '女', '逍遥哥哥,你终于找到我了');
INSERT INTO `student` VALUES (124, '2024-02-25 10:10:10', '王语嫣', '123', '15612345678', 17, '女', '你好');
INSERT INTO `student` VALUES (125, '2024-02-25 10:10:10', '龙姑娘', '123', '15612345678', 22, '女', '我想和过过过儿过过过的日子');
INSERT INTO `student` VALUES (126, '2024-02-25 10:10:10', '杨过', '123', '15612345678', 18, '男', '一遇杨过误终身');
INSERT INTO `student` VALUES (127, '2024-02-25 10:10:10', '杨逍', '123', '15612345678', 27, '男', '杨过和程英的大儿子');
INSERT INTO `student` VALUES (128, '2024-02-25 10:10:10', '赵灵儿', '123', '15612345678', 16, '女', '逍遥哥哥,你终于找到我了');
INSERT INTO `student` VALUES (129, '2024-02-25 10:10:10', '王语嫣', '123', '15612345678', 17, '女', '你好');
INSERT INTO `student` VALUES (130, '2024-02-25 10:10:10', '龙姑娘', '123', '15612345678', 22, '女', '我想和过过过儿过过过的日子');
INSERT INTO `student` VALUES (131, '2024-02-25 10:10:10', '杨过', '123', '15612345678', 18, '男', '一遇杨过误终身');
INSERT INTO `student` VALUES (132, '2024-02-25 10:10:10', '杨逍', '123', '15612345678', 27, '男', '杨过和程英的大儿子');
INSERT INTO `student` VALUES (133, '2024-02-25 10:10:10', '赵灵儿', '123', '15612345678', 16, '女', '逍遥哥哥,你终于找到我了');
INSERT INTO `student` VALUES (134, '2024-02-25 10:10:10', '王语嫣', '123', '15612345678', 17, '女', '你好');
INSERT INTO `student` VALUES (135, '2024-02-25 10:10:10', '龙姑娘', '123', '15612345678', 22, '女', '我想和过过过儿过过过的日子');
INSERT INTO `student` VALUES (136, '2024-02-25 10:10:10', '杨过', '123', '15612345678', 18, '男', '一遇杨过误终身');
INSERT INTO `student` VALUES (137, '2024-02-25 10:10:10', '杨逍', '123', '15612345678', 27, '男', '杨过和程英的大儿子');
INSERT INTO `student` VALUES (138, '2024-02-25 10:10:10', '赵灵儿', '123', '15612345678', 16, '女', '逍遥哥哥,你终于找到我了');
INSERT INTO `student` VALUES (139, '2024-02-25 10:10:10', '王语嫣', '123', '15612345678', 17, '女', '你好');
INSERT INTO `student` VALUES (140, '2024-02-25 10:10:10', '龙姑娘', '123', '15612345678', 22, '女', '我想和过过过儿过过过的日子');
INSERT INTO `student` VALUES (141, '2024-02-25 10:10:10', '杨过', '123', '15612345678', 18, '男', '一遇杨过误终身');
INSERT INTO `student` VALUES (142, '2024-02-25 10:10:10', '杨逍', '123', '15612345678', 27, '男', '杨过和程英的大儿子');
INSERT INTO `student` VALUES (143, '2024-02-25 10:10:10', '赵灵儿', '123', '15612345678', 16, '女', '逍遥哥哥,你终于找到我了');
INSERT INTO `student` VALUES (144, '2024-02-25 10:10:10', '王语嫣', '123', '15612345678', 17, '女', '你好');
INSERT INTO `student` VALUES (145, '2024-02-25 10:10:10', '龙姑娘', '123', '15612345678', 22, '女', '我想和过过过儿过过过的日子');
INSERT INTO `student` VALUES (146, '2024-02-25 10:10:10', '杨过', '123', '15612345678', 18, '男', '一遇杨过误终身');
INSERT INTO `student` VALUES (147, '2024-02-25 10:10:10', '杨逍', '123', '15612345678', 27, '男', '杨过和程英的大儿子');
INSERT INTO `student` VALUES (148, '2024-02-25 10:10:10', '赵灵儿', '123', '15612345678', 16, '女', '逍遥哥哥,你终于找到我了');
INSERT INTO `student` VALUES (149, '2024-02-25 10:10:10', '王语嫣', '123', '15612345678', 17, '女', '你好');
INSERT INTO `student` VALUES (150, '2024-02-25 10:10:10', '龙姑娘', '123', '15612345678', 22, '女', '我想和过过过儿过过过的日子');
INSERT INTO `student` VALUES (151, '2024-02-25 10:10:10', '杨过', '123', '15612345678', 18, '男', '一遇杨过误终身');
INSERT INTO `student` VALUES (152, '2024-02-25 10:10:10', '杨逍', '123', '15612345678', 27, '男', '杨过和程英的大儿子');
INSERT INTO `student` VALUES (153, '2024-02-25 10:10:10', '赵灵儿', '123', '15612345678', 16, '女', '逍遥哥哥,你终于找到我了');
INSERT INTO `student` VALUES (154, '2024-02-25 10:10:10', '王语嫣', '123', '15612345678', 17, '女', '你好');
INSERT INTO `student` VALUES (155, '2024-02-25 10:10:10', '龙姑娘', '123', '15612345678', 22, '女', '我想和过过过儿过过过的日子');
INSERT INTO `student` VALUES (156, '2024-02-25 10:10:10', '杨过', '123', '15612345678', 18, '男', '一遇杨过误终身');
INSERT INTO `student` VALUES (157, '2024-02-25 10:10:10', '杨逍', '123', '15612345678', 27, '男', '杨过和程英的大儿子');
INSERT INTO `student` VALUES (158, '2024-02-25 10:10:10', '赵灵儿', '123', '15612345678', 16, '女', '逍遥哥哥,你终于找到我了');
INSERT INTO `student` VALUES (159, '2024-02-25 10:10:10', '王语嫣', '123', '15612345678', 17, '女', '你好');
INSERT INTO `student` VALUES (160, '2024-02-25 10:10:10', '龙姑娘', '123', '15612345678', 22, '女', '我想和过过过儿过过过的日子');
INSERT INTO `student` VALUES (161, '2024-02-25 10:10:10', '杨过', '123', '15612345678', 18, '男', '一遇杨过误终身');
INSERT INTO `student` VALUES (162, '2024-02-25 10:10:10', '杨逍', '123', '15612345678', 27, '男', '杨过和程英的大儿子');
INSERT INTO `student` VALUES (163, '2024-02-25 10:10:10', '赵灵儿', '123', '15612345678', 16, '女', '逍遥哥哥,你终于找到我了');
INSERT INTO `student` VALUES (164, '2024-02-25 10:10:10', '王语嫣', '123', '15612345678', 17, '女', '你好');
INSERT INTO `student` VALUES (165, '2024-02-25 10:10:10', '龙姑娘', '123', '15612345678', 22, '女', '我想和过过过儿过过过的日子');
INSERT INTO `student` VALUES (166, '2024-02-25 10:10:10', '杨过', '123', '15612345678', 18, '男', '一遇杨过误终身');
INSERT INTO `student` VALUES (167, '2024-02-25 10:10:10', '杨逍', '123', '15612345678', 27, '男', '杨过和程英的大儿子');
INSERT INTO `student` VALUES (168, '2024-02-25 10:10:10', '赵灵儿', '123', '15612345678', 16, '女', '逍遥哥哥,你终于找到我了');
INSERT INTO `student` VALUES (169, '2024-02-25 10:10:10', '王语嫣', '123', '15612345678', 17, '女', '你好');
INSERT INTO `student` VALUES (170, '2024-02-25 10:10:10', '龙姑娘', '123', '15612345678', 22, '女', '我想和过过过儿过过过的日子');
INSERT INTO `student` VALUES (171, '2024-02-25 10:10:10', '杨过', '123', '15612345678', 18, '男', '一遇杨过误终身');
INSERT INTO `student` VALUES (172, '2024-02-25 10:10:10', '杨逍', '123', '15612345678', 27, '男', '杨过和程英的大儿子');
INSERT INTO `student` VALUES (173, NULL, '黄衣女子', NULL, NULL, 26, '男', '杨过与龙姑娘的大女儿');

SET FOREIGN_KEY_CHECKS = 1;
 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值