sql 208错误

2025-12-06 15:42:48
推荐回答(2个)
回答1:

是您的表名建错了.
create table studnets
应该是
create table students

请先删除建错的表
drop table studnets
然后重新建立 就可以了
create table students
(sno numeric(6,0) not null,
sname char(8) not null,
age numeric(3,0),
sex char(2),
bplace char(20),
primary key(sno)
)

回答2:

create table studnets

insert into students

注意看!你的表名写错了