mysql 比较两个表

发布于 2024-11-12 03:01:42 字数 203 浏览 2 评论 0原文

我有一个 mysql 数据库,有 2 个表。第一个表包含用户信息,第二个表包含投票。两者之间有一个公共字段(userid)。

但在检查每个表中的 num 行后,我发现第一个表比第二个表包含近 1000 个用户,因此有近 1000 个成员没有投票。

我想查询这两个表并获取一个包含未投票成员的用户 ID 的数组。

怎样做?

谢谢。

I have a mysql database that has 2 table. the first table contains the user information, and the second table contains the votes. there is a common field between the two (userid).

but after checking the num rows in each table I found that the first table contains nearly 1000 users more than the second, so there are almost 1000 members whio didn't vote.

I want to query the two tables and get an array containing the userid of the members who didn't vote.

How to?

Thanks.

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

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

发布评论

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

评论(1

半山落雨半山空 2024-11-19 03:01:42

您需要连接两个表并过滤掉哪些用户在投票表中没有相应的记录。

SELECT id FROM members
LEFT JOIN votes ON userid=id
WHERE votes.userid IS NULL

You need to join both tables and filter out which users don't have corresponding record in votes table.

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