hi
i have a table with 3 fields: ID Name Order
ID is autonumber and primery key
as example: (records order by Order Field)
ID Name Order
4 book 1
3 tree 2
2 red 3
1 blue 4
5 black 5
i wan to change its order
as example i want to move record with ID=1 to after the record with ID=4
new result must be:
ID Name Order
4 book 1
1 blue 2
3 tree 3
2 red 4
5 black 5
you see most of records have new Order filed numbers with this one changing.
any one can help me how do i can change Order field for reaching to this result?
if you show me an example script i thanks of you