Mysql主键删除和重新插入

发布于 2024-12-10 06:39:29 字数 57 浏览 0 评论 0 原文

手动插入主键曾经存在但已被删除的记录是否有任何已知的后果?该主键只存在于一张表中,没有被其他表引用。

Are there any known ramifications to manually inserting a record with a primary key that once existed but was deleted. Said primary key existed only in one table, and is not referenced in any other tables.

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

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

发布评论

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

评论(2

乄_柒ぐ汐 2024-12-17 06:39:29

并不真地。

但一般来说,由于历史表的原因,这将是一个坏主意。在某些时候,它确实存在并将记录在大多数系统中。
您还可能有外部跟踪:备份、数据库副本、链接服务器上的一些数据。

如果您只是填补自动编号或身份中的空白,那么这不是一个有效的理由。

Not really.

But generally it would be a bad idea because of history tables. At some point, it did exist and will be logged in most systems.
You may also have an external trace: a backup, a copy of the database, some data on a linked server.

If you are just filling gaps in an autonumber or identity, then this is not a valid reason.

枯叶蝶 2024-12-17 06:39:29

您使用简单的 insert 语句来提供主键值,用于例子:

create table some_table (
id int(10) unsigned primary key,
data text
);

insert into some_table (id, data) values (1, 'some data');

you use simple insert statement with providing your primary key value, for example:

create table some_table (
id int(10) unsigned primary key,
data text
);

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