41 lines
1.2 KiB
SQL
41 lines
1.2 KiB
SQL
/*
|
|
Navicat Premium Data Transfer
|
|
|
|
Source Server : 2112B
|
|
Source Server Type : MySQL
|
|
Source Server Version : 50557
|
|
Source Host : localhost:3306
|
|
Source Schema : day_6
|
|
|
|
Target Server Type : MySQL
|
|
Target Server Version : 50557
|
|
File Encoding : 65001
|
|
|
|
Date: 26/07/2024 09:34:20
|
|
*/
|
|
|
|
SET NAMES utf8mb4;
|
|
SET FOREIGN_KEY_CHECKS = 0;
|
|
|
|
-- ----------------------------
|
|
-- Table structure for bill
|
|
-- ----------------------------
|
|
DROP TABLE IF EXISTS `bill`;
|
|
CREATE TABLE `bill` (
|
|
`bill_id` int(11) NOT NULL AUTO_INCREMENT,
|
|
`bill_date` datetime NULL DEFAULT NULL,
|
|
`bill_monery` double NULL DEFAULT NULL,
|
|
PRIMARY KEY (`bill_id`) USING BTREE
|
|
) ENGINE = InnoDB AUTO_INCREMENT = 6 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci ROW_FORMAT = Compact;
|
|
|
|
-- ----------------------------
|
|
-- Records of bill
|
|
-- ----------------------------
|
|
INSERT INTO `bill` VALUES (1, '2002-10-21 00:00:00', 998);
|
|
INSERT INTO `bill` VALUES (2, '2202-01-01 00:00:00', 70.9);
|
|
INSERT INTO `bill` VALUES (3, '2024-07-26 09:10:03', 99.9);
|
|
INSERT INTO `bill` VALUES (4, '2024-07-26 09:12:41', 21321);
|
|
INSERT INTO `bill` VALUES (5, '2024-07-26 09:15:06', 434);
|
|
|
|
SET FOREIGN_KEY_CHECKS = 1;
|