ora-00984 columnnot allowed here
Oracle10g 创建新数据库 test1,登陆Scott/tiger
使用SQLPLUS创建 AAA表,
create table AAA(name char(10),age char(10);成功
使用delphi7
SmartQuery1.SQL.Clear;
SmartQuery1.SQL.Add( 'insert into aaa (name,age)values( "Kingf ", "23 ") ');
smartquery1.Open;
执行后出错提示:ora-00984 columnnot allowed here
谁知道嘛原因?在线等。
[解决办法]
ora-00984 columnnot allowed here//列在此处不允许
把你的表结构贴出来你的age是varchar2类型?