create table stu
(id number,
name varchar2(30)
);insert into stu(id,name) values(111,"aaa");
插入一直提示这个错误 是什么错误呢?