Android 数据库 - 外键

发布于 2024-10-30 16:15:22 字数 95 浏览 3 评论 0原文

有人可以澄清 Android 数据库环境中的外键吗?
我已经成功地建立了具有所有附加功能的数据库。

但我找不到有关如何使用外键连接两个数据库的工作信息?

Can someone clarify foreign keys in the Android database environment?
I have successfully established the databases with all the bells and whistles.

But I can't find working information on how to connect two databases with foreign keys?

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

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

发布评论

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

评论(2

吖咩 2024-11-06 16:15:22

没有理由链接数据库,所以我假设你指的是表。您可以使用 references row(table) 语句将一个表中的 ID 引用到另一个表中,从而轻松链接表。

我的数据库在一个表中包含学生,在另一个表中包含成绩。各年级
通过 id 引用学生,如下所示:

表学生:

studentname  text  
studentemail text  
studentid integer primary key autoincrements

表成绩:

grade integer  
student integer references studentid(Students)  

There is no reason to link databases, so I assume you mean tables. You can easily link tables by referring an id in one table to another using the references row(table) statement.

My database has students in one table and grades in another. Each grade
refers to the student by id like this:

Table Students:

studentname  text  
studentemail text  
studentid integer primary key autoincrements

Table Grades:

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