You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

35 lines
888 B

/*
Navicat MySQL Data Transfer
Source Server : zx
Source Server Version : 80018
Source Host : localhost:3306
Source Database : test02
Target Server Type : MYSQL
Target Server Version : 80018
File Encoding : 65001
Date: 2020-06-16 11:11:46
*/
SET FOREIGN_KEY_CHECKS=0;
-- ----------------------------
-- Table structure for order_details
-- ----------------------------
DROP TABLE IF EXISTS `order_details`;
CREATE TABLE `order_details` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`userId` int(11) NOT NULL,
`orderNum` int(11) NOT NULL,
`ISBN` varchar(20) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL,
`count` int(11) NOT NULL,
`price` float(10,2) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
-- ----------------------------
-- Records of order_details
-- ----------------------------