cakephp从其他表中提取匹配数据

时间:2019-07-10 10:44:07

标签: cakephp

【cakephp 3.x】

大家好,我是Cakephp的新手。 我想提取表数据。 例如,我有一个下表。

  • 表A:id,other_id,other_info

  • 表B:id,other_id_A,other_id_B

我想使用『other_id_A』,『other_id_B』提取『other_info』。 预期结果如下。

  • other_info(使用other_id_A提取)
  • other_info(other_id_B)
  • 新表:id other_id_A,other_info(A),other_id_B,other_info(b)

我认为我可以使用外键。 但是,我不需要使用id进行提取。 我只想使用other_id作为密钥。

如何获得上述结果? 谢谢您阅读我的问题。

0 个答案:

没有答案