Fruits Animals
+------------------+------------------------+
| fruID fruDesc | animalID animalDesc |
| | |
| 0 Unknown | 0 Unknown |
| 1 Apple | 1 Bird |
| 2 Banana | 2 Tiger |
| 3 Microsoft | 3 Etc |
+------------------+------------------------+
NoBrain
+-------------------------------------------+
| someField fruID animalID dateRecorded |
| |
| 0 3 2 now |
+-------------------------------------------+
我正在使用MySQL并尝试编写一个接受两个文本字段的程序,这些字段应该是fruDesc和animalDesc,找到它们的相关ID并将这些列插入表中。
在上面的场景中,我应该可以调用cool_proc(' Banana',' Tiger',' reallydoesntmatter')并且应该插入NoBrain TBL相应的行:
NoBrain
+-----------------------------------------------+
| someField fruID animalID dateRecorded |
| |
| 2 2 2 reallydoesntmatter|
+-----------------------------------------------+
我可以通过执行多个查询和选择来完成此操作,但我想知道是否仍然使用单个查询执行此操作?没有加入(当行中有大量记录时加入很有用 - 我想 - ?? - )
另外你可能已经注意到,如果没有匹配,我想要使用ID默认值为0,我想我可以通过使用COALESCE来实现这一点
编辑:假设someField是AUTO INCREMENTING
答案 0 :(得分:1)
这有点棘手,因为你不允许匹配。在其他数据库中,您将使用full outer join
。在MySQL中,您将使用union all
和聚合:
insert into nobrain(fruid, aniamlid, daterecorded)
select max(f.fruid), max(animalid), now()
from ((select f.fruid, NULL as animalid, NULL as animalDesc
fruits f
where f.frudesc = 'Banana'
) union all
(select a.animalid, NULL, animalDesc
from animals a
where a.animalDesc = 'Tiger'
)
) af;