insert into tablename(name,address)
values('fred','14 Evergree Terrace')
I was running the above query and kept getting the error "ORA-00928:missing select keyword" when inserting a row in a table, so I changed the insert statement to the following:
insert into tablename
values('fred','14 Evergreen Terrace')
It now works fine but I can't see why the original statement should break. Any ideas?
values('fred','14 Evergree Terrace')
I was running the above query and kept getting the error "ORA-00928:missing select keyword" when inserting a row in a table, so I changed the insert statement to the following:
insert into tablename
values('fred','14 Evergreen Terrace')
It now works fine but I can't see why the original statement should break. Any ideas?