SQLite 在多个表中进行主键搜索

发布于 2024-12-08 15:20:53 字数 136 浏览 0 评论 0原文

我有一个包含多个表的 SQLite3 数据库。

所有这些表都包含一个名为 cID 且设置为主键的唯一 INTEGER 列。

这些表的数量未定。

有没有一种方法(尽可能快地)根据主键值在所有这些表中搜索一条记录?

I have an SQLite3 database that contains several tables.

All of these tables include a unique INTEGER column named cID set to Primary Key.

There will be an undetermined number of these tables.

Is there a way to (as speedily as possible) search over all of these tables for one record based on a Primary Key value?

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

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

发布评论

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

评论(1

绝情姑娘 2024-12-15 15:20:53

循环遍历您的表格,执行以下操作:

SELECT [columns] FROM [table] WHERE cID = [您感兴趣的 cID]

仅供参考,主键只需要在单个表中的记录之间是唯一的 - 它不需要在所有表中都是唯一的。

Loop through your tables, doing:

SELECT [columns] FROM [table] WHERE cID = [the cID you're interested in].

FYI, the primary key only needs to be unique across records in a single table - it does not need to be unique across all tables.

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