I want to delete a row in java derby table without any affect in primary key. For example, if the rows are
pkey item price
1 apple 100
2 banana 20
3 avocado 55
then when I delete the 2nd row , it shows
pkey item price
1 apple 100
3 avocado 55
but I want to show it as
pkey item price
1 apple 100
2 avocado 55