通过互动网格Oracle Apex中的添加行按钮创建和保存记录时,线路会移动

发布于 2025-01-24 07:14:09 字数 118 浏览 4 评论 0原文

对于ex:我有5条现有行作为“ 1,2,3,4,5”,现在我试图将另外一行添加为“ 6”,然后尝试保存,然后行转移了“添加行”按钮为“ 4,3,5,6,1,2”,在交互式网格甲骨文Apex中,行自动移动订单,如何解决此问题

For Ex: I have 5 existing lines as line no "1,2,3,4,5" and now i am trying to add one more row as "6" and try to save then the rows are shifted around while saving records through "Add rows" Button as "4,3,5,6,1,2" in interactive grid oracle Apex, the rows are automatically shifting the order, how to resolve this

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

晨曦慕雪 2025-01-31 07:14:09

在关系数据库中,表中的行不会按任何特定顺序“排序”。确保将其正确排序的唯一方法是通过子句应用顺序。

由于您无法在Interactive Grid的查询中进行此操作(如果使用),则必须通过Interactive Grid的 Action 按钮(data> sort)进行操作,然后选择一个(或更多)将在交互式网格中 sort 行的列。

In a relational database, rows in a table aren't "sorted" in any particular order. The only way to make sure they will be sorted properly is to apply the ORDER BY clause.

As you can't do it in Interactive Grid's query (if you used it), you'll have to do it through Interactive Grid's Actions button (Data > Sort) and choose one (or more) columns which will sort rows in the Interactive Grid.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文