Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
Home -> Community -> Mailing Lists -> Oracle-L -> Re: urgent
Try:
Select rowid, <column 1>, <column 2>, ect...
from <table_name>
where <blah, blah, blah>;
Delete from <table_name>
where rowid = <rowid of the row you want to delete>;
HTH,