mayamanako
Technical User
Hi guys,
If I have an original table like this, (where id is unique and not replicated)
id itemhere
1 apple
2 grapes
3 banana
4 strawberry
5 kiwi
and deleted some rows like this:
id itemhere
1 apple
2 grapes
and added new entries, how do I make it to look like this:
id itemhere
1 apple
2 grapes
3 mango
4 blackberry
5 peach
because when I deleted some items, the newly-added items' ids are not anymore 3,4 and 5 but 6,7,8? how do I make it to have 3,4 and 5 still? Is it possible?
Thanks for any sugestions.
If I have an original table like this, (where id is unique and not replicated)
id itemhere
1 apple
2 grapes
3 banana
4 strawberry
5 kiwi
and deleted some rows like this:
id itemhere
1 apple
2 grapes
and added new entries, how do I make it to look like this:
id itemhere
1 apple
2 grapes
3 mango
4 blackberry
5 peach
because when I deleted some items, the newly-added items' ids are not anymore 3,4 and 5 but 6,7,8? how do I make it to have 3,4 and 5 still? Is it possible?
Thanks for any sugestions.