通过codeigniter中的反馈表传递customerID?

时间:2017-07-28 04:50:26

标签: php mysql codeigniter-3

我的数据库中有两个表:

customer
feedback

A'外键'在feedback表中,customerID。 我想知道哪个客户通过他们的ID提供反馈。

请帮忙。 提前致谢。

1 个答案:

答案 0 :(得分:0)

Select customerID from customer where customerID in (select distinct customerID from feedback);

希望这些查询可以满足您的需求。