-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstu.sql
31 lines (25 loc) · 904 Bytes
/
stu.sql
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
/*
Navicat Premium Data Transfer
Source Server : localhost_3306
Source Server Type : MySQL
Source Server Version : 80021
Source Host : localhost:3306
Source Schema : python
Target Server Type : MySQL
Target Server Version : 80021
File Encoding : 65001
Date: 22/06/2021 08:51:51
*/
SET NAMES utf8mb4;
SET FOREIGN_KEY_CHECKS = 0;
-- ----------------------------
-- Table structure for stu
-- ----------------------------
DROP TABLE IF EXISTS `stu`;
CREATE TABLE `stu` (
`sno` int(0) NULL DEFAULT NULL COMMENT '学生学号',
`Chinese` int(0) NULL DEFAULT NULL COMMENT '语文成绩',
`Math` int(0) NULL DEFAULT NULL COMMENT '数学成绩',
`type` int(0) NULL DEFAULT NULL COMMENT '类型'
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci ROW_FORMAT = Dynamic;
SET FOREIGN_KEY_CHECKS = 1;