From ede9b370e68ffa5f8023df75838ea2900dff0272 Mon Sep 17 00:00:00 2001 From: zzh <2441574824@qq.com> Date: Mon, 29 Jul 2024 09:27:36 +0800 Subject: [PATCH] =?UTF-8?q?=E6=97=A5=E8=80=8310?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .idea/vcs.xml | 6 ++++++ sql/rikao10.sql | 44 ++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 50 insertions(+) create mode 100644 .idea/vcs.xml create mode 100644 sql/rikao10.sql diff --git a/.idea/vcs.xml b/.idea/vcs.xml new file mode 100644 index 0000000..94a25f7 --- /dev/null +++ b/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/sql/rikao10.sql b/sql/rikao10.sql new file mode 100644 index 0000000..9c4178b --- /dev/null +++ b/sql/rikao10.sql @@ -0,0 +1,44 @@ +/* + Navicat Premium Data Transfer + + Source Server : 49.235.138.50 + Source Server Type : MySQL + Source Server Version : 80400 + Source Host : 49.235.138.50:3306 + Source Schema : rikao10 + + Target Server Type : MySQL + Target Server Version : 80400 + File Encoding : 65001 + + Date: 29/07/2024 09:04:28 +*/ + +SET NAMES utf8mb4; +SET FOREIGN_KEY_CHECKS = 0; + +-- ---------------------------- +-- Table structure for t_user +-- ---------------------------- +DROP TABLE IF EXISTS `t_user`; +CREATE TABLE `t_user` ( + `uid` int NOT NULL AUTO_INCREMENT, + `userName` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL, + `pwd` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL, + `sex` int NULL DEFAULT NULL, + `brithday` date NULL DEFAULT NULL, + PRIMARY KEY (`uid`) USING BTREE +) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci ROW_FORMAT = Dynamic; + +-- ---------------------------- +-- Records of t_user +-- ---------------------------- +INSERT INTO `t_user` VALUES (2, '李四', '123', 1, '2024-07-29'); +INSERT INTO `t_user` VALUES (3, '王五', '123', 1, '2024-07-29'); +INSERT INTO `t_user` VALUES (4, '赵六', '123', 1, '2024-07-29'); +INSERT INTO `t_user` VALUES (5, '田七', '123', 1, '2024-07-29'); +INSERT INTO `t_user` VALUES (6, '崔九', '123', 1, '2024-07-29'); +INSERT INTO `t_user` VALUES (7, '老八', '123', 1, '2024-07-29'); +INSERT INTO `t_user` VALUES (8, '曲十', '123', 1, '2024-07-29'); + +SET FOREIGN_KEY_CHECKS = 1;