如果我有一个数据库字段列表:
id order title
1 3 This is a post
2 1 This is another post
3 2 This is also a post
4 4 This is still a post
我想根据 order 更改这些的顺序。
如果我将 id #1 上的订单设置为 2,我希望将 id #3 上的订单设置为 3。
如果我将 id #4 上的订单设置为 1,我希望 id #1 上的订单为 4,将 id #2 上的订单设置为为 2,id #3 上的订单为 3 等等。
我怎样才能做到这一点?我认为这应该很简单,但我无法弄清楚。
我已经搜索了,但我不知道要搜索什么...