更新后记录的位置更改为“最后位置”。 + PostgreSQL
当我更新数据库中的记录时,特定记录的位置是 改为最后。
我的问题是:- 有什么办法保住职位 数据库中更新的记录。
任何人都可以帮我解决这个问题吗?
谢谢 问候, 比纳亚
When i m updating a record in my DB, the position of the Particular record is
changed to last.
My question is : -
Is there any way to retain the position
of the updated record in the DB.
Can any body Please help me on this.
Thanks
Regards,
Binaya
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
没有办法影响 PostgreSQL 中行的物理定位,它们返回的顺序也取决于查询计划、使用索引或表扫描以及执行连接的方式。您必须使用 ORDER BY 来按特定顺序获取行。
There is no way to influence the physical positioning of rows in PostgreSQL and the order in which they are returned also depends on the query plan, using index or table scan and the way joins are performed. You must use ORDER BY to get rows in a specific order.