create table tbusers(account varchar(50) primary key,password varchar(30) not null);
正常执行,且表产生,但以下语句报错
insert into tbusers values("wuming","123456");
the error is:
             java.sql.SQLException:Colum not found :wuming
这是怎么会事,望高手指点.