7.26_test/sql数据库/test7.26.sql

39 lines
1.1 KiB
SQL

/*
Navicat Premium Data Transfer
Source Server : 106.54.199.209
Source Server Type : MySQL
Source Server Version : 80400
Source Host : 106.54.199.209:3306
Source Schema : test7.26
Target Server Type : MySQL
Target Server Version : 80400
File Encoding : 65001
Date: 26/07/2024 09:19:04
*/
SET NAMES utf8mb4;
SET FOREIGN_KEY_CHECKS = 0;
-- ----------------------------
-- Table structure for bill
-- ----------------------------
DROP TABLE IF EXISTS `bill`;
CREATE TABLE `bill` (
`bill_id` int NOT NULL AUTO_INCREMENT COMMENT '账单编号',
`bill_date` datetime NULL DEFAULT NULL COMMENT '账单日期',
`bill_money` double(10, 2) NULL DEFAULT NULL COMMENT '账单金额',
PRIMARY KEY (`bill_id`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci ROW_FORMAT = Dynamic;
-- ----------------------------
-- Records of bill
-- ----------------------------
INSERT INTO `bill` VALUES (1, '2024-07-21 08:38:59', 998.00);
INSERT INTO `bill` VALUES (2, '2024-07-18 08:39:28', 70.90);
INSERT INTO `bill` VALUES (3, '2024-07-26 09:11:24', 12.00);
SET FOREIGN_KEY_CHECKS = 1;