gpt4 book ai didi

表中的 MySQL 无效条目

转载 作者:行者123 更新时间:2023-11-29 20:58:13 26 4
gpt4 key购买 nike

我在 MySQL 表中有一个无用的条目,我无法更新或执行任何操作。这会导致应用程序出现问题,因为它显示了一项未完成的任务,但我们无法清除错误。我想知道有没有办法解决这个问题?

+------+---------+--------+---------------------+
| id | type_id | status | created_at |
+------+---------+--------+---------------------+
| 8706 | 174 | 0 | 2014-05-16 14:13:13 |
| 8707 | 174 | 9 | 2014-05-16 14:18:29 |
| 8708 | 174 | 7 | 2014-05-16 14:19:54 |
| 8709 | 174 | 7 | 2014-05-16 14:21:20 |
| 8711 | 239 | 0 | 2014-05-20 02:14:57 |
| 8712 | 239 | 0 | 2014-05-20 02:21:20 |
| 8713 | 239 | 0 | 2014-05-20 02:28:19 |
| 8714 | 239 | 0 | 2014-05-20 02:31:02 |
+------+---------+--------+---------------------+
8 rows in set (0.00 sec)

截图如下

select id, type_id, status,created_at from device where id > 8705 and id < 8715;

Missing Entry

select id, type_id, status,created_at from device where id = 8710;

Missing Entry 2

我想知道是否有任何方法可以纠正此问题并使应用程序再次正常工作?

最佳答案

我发现该条目不存在,通过创建插入命令,它可以纠正问题。

insert into device (id, type_id, name,status,created_at) values (8710, 174, "deleted entry",0,0);

关于表中的 MySQL 无效条目,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37448449/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com