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.

32 lines
809 B

5 years ago
/*
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:52
*/
SET FOREIGN_KEY_CHECKS=0;
-- ----------------------------
-- Table structure for user_cart
-- ----------------------------
5 years ago
DROP TABLE IF EXISTS `cart`;
5 years ago
CREATE TABLE `user_cart` (
5 years ago
`username` varchar(40) COLLATE utf8_unicode_ci NOT NULL,
5 years ago
`bookname` varchar(100) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL,
`price` float(10,2) NOT NULL,
`count` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
-- ----------------------------
-- Records of user_cart
-- ----------------------------