删除sqlite中的第一行后如何重新排列表?

发布于 2024-11-08 13:51:07 字数 221 浏览 0 评论 0原文

我在 sqlite 中有 1 个表,我正在向该表插入值。当插入行id大于100时,我想删除第一个插入的记录并在第100个位置插入新记录,我被删除了第一个记录,但第二个记录在第二个位置,但我想在删除第一行后重新排列记录。我该怎么做呢?

我的表名称是:Products

我的表包含productName、productId、...

我的数据库名称是:HalalGauge.sqlite

I have 1 table in sqlite, I am inserting values to that table. when the insertion row id greater than 100 I want to delete first inserted record and insert new record at 100th location, I am deleted 1st record but 2nd record in 2nd place but i want rearrange the record after deleting first row. How can I do it?

My table name is: Products

My table contains productName,productId,...

My DatabaseName is: HalalGauge.sqlite

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

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

发布评论

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

评论(2

彩扇题诗 2024-11-15 13:51:07

将新行添加为 ProductId 101。
从 ProductId = 1 的产品中删除
UPDATE PRODUCTS set ProductId = (productId-1)

我不会称这是一个很好的解决方案,因为它会更新每一行,但如果您只有 100 行,那就没问题了。

Add your new row as productId 101.
DELETE FROM PRODUCTS WHERE productId = 1
UPDATE PRODUCTS set productId = (productId-1)

I wouldn't call this a nice solution as it updates every row but if you only have 100 rows it will be ok.

¢蛋碎的人ぎ生 2024-11-15 13:51:07

你需要使用这个方法来重新排列

- (void)tableView:(UITableView *)tableView
         commitEditingStyle:(UITableViewCellEditingStyle)editingStyle
         forRowAtIndexPath:(NSIndexPath *)indexPath;

- (void)tableView:(UITableView *)tableView
         moveRowAtIndexPath:(NSIndexPath *)fromIndexPath
         toIndexPath:(NSIndexPath *)toIndexPath;

you need to use this methods for rearranging

- (void)tableView:(UITableView *)tableView
         commitEditingStyle:(UITableViewCellEditingStyle)editingStyle
         forRowAtIndexPath:(NSIndexPath *)indexPath;

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