mysql 比较两个表
我有一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要连接两个表并过滤掉哪些用户在投票表中没有相应的记录。
You need to join both tables and filter out which users don't have corresponding record in votes table.