सबसे पहले, आपको "आदेश" की परिभाषा के साथ आना होगा, क्योंकि तालिका में पंक्तियों को बिना किसी आदेश के संग्रहीत किया जाता है।
जब आप जानते हैं कि आपका आदेश क्या है, तो आप एक संग्रहीत कार्यविधि बना सकते हैं जो इस प्रकार है:
insert into the_table (new_id, start_date) values (@id, @start_date);
update the_table
set end_date = @start_date
where id = <the id determined by your sorting rule>;