为了账号安全,请及时绑定邮箱和手机立即绑定

求问数据库问题

create database shop;

use shop;

create table shop_pro(
    id int unsigned auto_increment key,
    pName varchar(50) not null unique,
    /*--商品货号*/
    pSn varchar(50) not null ,
    /*--商品数量*/
    pNum int unsigned default 1,
    /*--商品进货价格*/
    mPrice decimal(10,2) not null,
    /*--售卖价格*/
    iPrice decimal(10,2) not null,
    /*--商品图片*/
    pImg varchar(50) not null,
    /*--上架时间*/
    pubTime int unsigned not null,
    /*--商品简介*/
    pDesc text not null,
    /*--商品是否在卖*/
    isShow tinyint(1) default 1,
    /*--商品是否热卖*/
    isHot tinyint(1) default 0,
    /*--商品属于哪个分类之下*/
    cId smallint unsigned(10,2) not null
);

请老师解答一下,一直建立不了表是怎么回事,还有正确应该怎么建立这张表。

正在回答

2 回答

"id int unsigned auto_increment key,”主键少了primary.  应该是“id int unsigned auto_increment primary key,”.

 "cId smallint unsigned(10,2) not null"  unsigned(10,2)的参数取消掉就好了."cId smallint unsigned not null"

0 回复 有任何疑惑可以回复我~

已经解决了谢谢

0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消
手把手教你实现电商网站后台开发
  • 参与学习       117283    人
  • 解答问题       1999    个

手把手教你用PHP搭建电子商务平台,由浅入深教你搭建电商系统

进入课程

求问数据库问题

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信