标签: php mysql codeigniter-3
我的数据库中有两个表:
customer feedback
A'外键'在feedback表中,customerID。 我想知道哪个客户通过他们的ID提供反馈。
feedback
customerID
请帮忙。 提前致谢。
答案 0 :(得分:0)
Select customerID from customer where customerID in (select distinct customerID from feedback);
希望这些查询可以满足您的需求。