myspl创建数据表出现问题
createtableuser{idintprimarykeyauto_increment,namevarchar(255)notnull,blogsvarchar(25...
create table user{
id int primary key auto_increment,
name varchar(255) not null,
blogs varchar(255) not null,
password varchar(255) not null
}
错在哪里了
#1064 - You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '{
id int primary key auto_increment,
name varchar(255) not null,
blogs ' at line 1
已知道了问题,忘记把{}换成() 展开
id int primary key auto_increment,
name varchar(255) not null,
blogs varchar(255) not null,
password varchar(255) not null
}
错在哪里了
#1064 - You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '{
id int primary key auto_increment,
name varchar(255) not null,
blogs ' at line 1
已知道了问题,忘记把{}换成() 展开
- 你的回答被采纳后将获得:
- 系统奖励15(财富值+成长值)+难题奖励10(财富值+成长值)+提问者悬赏10(财富值+成长值)
1个回答
2015-01-07
展开全部
create table customers
(
cust_id int not null auto_increment,
cust_name char(50) not null,
cust_sex char(50) not null,
cust_adderss char(50) null,
cust_contact char(50) null,
primary key(cust_id)
)
(
cust_id int not null auto_increment,
cust_name char(50) not null,
cust_sex char(50) not null,
cust_adderss char(50) null,
cust_contact char(50) null,
primary key(cust_id)
)
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
光点科技
2023-08-15 广告
2023-08-15 广告
通常情况下,我们会按照结构模型把系统产生的数据分为三种类型:结构化数据、半结构化数据和非结构化数据。结构化数据,即行数据,是存储在数据库里,可以用二维表结构来逻辑表达实现的数据。最常见的就是数字数据和文本数据,它们可以某种标准格式存在于文件...
点击进入详情页
本回答由光点科技提供
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询