如何将每个学生的申请数量限制为 3 份?

发布于 2024-10-14 18:40:19 字数 94 浏览 2 评论 0原文

我有一张表“学生”和一张表“应用程序”。
每个学生最多可以申请3门课程。我怎样才能确保在数据库中?扳机?约束?

你能告诉我怎么写吗?我是 SQL 新手

I have one table 'Students' and one table 'Applications'.
Each student can apply for max 3 courses. How can I ensure that in database? Trigger? Constraint?

Can you show me how to write it? I'm new to SQL

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

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

发布评论

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

评论(2

私藏温柔 2024-10-21 18:40:19

一种方法是对学生进行反制。当向应用程序插入一行时,它会增加它;当删除一行时,它会减少它。使用触发器执行此操作非常简单。

然后对 Students 施加约束,使计数器必须 <= 3。

One way is to put a counter on students. When a row is inserted to Applications increment it, when a row is deleted, decrement it. Doing this with triggers is very simple.

Then put a constraint on Students so the counter must be <= 3.

心安伴我暖 2024-10-21 18:40:19
SELECT COUNT(*) FROM Applications GROUP BY Student_ID
SELECT COUNT(*) FROM Applications GROUP BY Student_ID
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文