Now the table structure and data are like below:
Name record_number Area
a 1 CN
a 3 DE
a 4 FR
a 6 DE
b 1 DE
b 2 CN
the primary key is (name, record_number)
the record_nubmer was generated by max(record_number) + 1, just assume that there are two records were deleted by record_number = 2/5 and name = 'a', so can anyone tell me how to remove record_nubmer gaps in the table above after deleting and the final results should be like this:
Name record_number Area
a 1 CN
a 2 DE
a 3 FR
a 4 DE
b 1 DE
b 2 CN