欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

A table must have at least 1 column

程序员文章站 2022-07-15 13:02:09
...

用MySQL创建table时报错

use bbs2;

create table article{
id int primary key auto_increment,
pid int,
rootid int,
title varchar(255),
cont text,
pdate datetime,
isleaf int
};

insert into article values (null, 0, 1, '你好', '你好', now(), 1);

报错:A table must have at least 1 column

解决办法:create table article(int , text)。应该是(),而不是{};

 

相关标签: