当确定它们存在于一个表中时,如何从两个表而不是一个表中获取行
我在 mysql 数据库中有两个表。主键 ID 5 的行肯定存在于 1 中,如果不存在则存在于 2 中,
我如何通过在 MySQL 中发出命令来检索它们
i have two table in mysql database. the row have primary key ID 5 is sure that exist in one or if not then exist in 2
how i can retrive them by making a command in MySQL
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
假设您的表具有相同的结构,您可以使用 UNION ALL 来执行此操作:
您还可以考虑更改架构,以便只有一个表,其中一个字段用于存储类型一或类型二。
Assuming that your tables have the same structure, you could do this using UNION ALL:
You could also consider changing your schema so that you only have one table with a field to store whether it is type one or type two.