SQLite 在多个表中进行主键搜索
我有一个包含多个表的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
循环遍历您的表格,执行以下操作:
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.