SQL> insert into patient
2 values('&pno','&pname','&title',&dob,&children,'&gp');
Enter value for pno: p3
Enter value for pname: mansell
Enter value for title: mr
Enter value for dob: 23-may-61
Enter value for children: 2
Enter value for gp: Dr.Williams
old 2: values('&pno','&pname','&title',&dob,&children,'&gp')
new 2: values('p3','mansell','mr',23-may-61,2,'Dr.Williams')
values('p3','mansell','mr',23-may-61,2,'Dr.Williams')
ERROR at line 2:
ORA-00984: column not allowed here
这曾经工作。我真的不明白如何使它工作..