是您的表名建错了.
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)
)
create table studnets
insert into students
注意看!你的表名写错了