Skip to Main Content

SQL & PL/SQL

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

removing and adding back the same item

user13328581Aug 28 2018 — edited Aug 29 2018

Hello experts;

What is the best approach to implementing this. THis is for knowledge based only.

I have the following same data below in case needed

create table test

(

Id number

,req_place varchar2

,req_date date

);

insert into test values (1, 'New York', to_date('1/1/2018', 'MM/DD/YYYY');

insert into test values (2, 'Boston', to_date('2/11/2018', 'MM/DD/YYYY');

insert into test values (3, 'Dallas', to_date('3/17/2018', 'MM/DD/YYYY');

insert into test values (4, 'Los Angeles', to_date('4/20/2018', 'MM/DD/YYYY');

I want to be able remove any given row and re-add back that same row..Hence, what is the best approach to this.

All help is appreciated.

This post has been answered by _Dylan_ on Aug 29 2018
Jump to Answer
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Sep 26 2018
Added on Aug 28 2018
27 comments
1,910 views