gpt4 book ai didi

php - 在mysql中建立三张表的查询

转载 作者:行者123 更新时间:2023-11-29 04:58:10 26 4
gpt4 key购买 nike

我必须在搜索过程中从三个表中收集数据:

佣金表 - 表 1:[affiliate_id]
关联表 - 表 2:[id][user_id]
配置文件表 - 表 3:[ID][NickName]

我将拥有的搜索输入是有人搜索了用户名。我需要从表 1 中返回数据,其中 affiliate_id 与表 2 的 user_id 匹配,这就像将要搜索的昵称。

我希望这是有道理的:)

最佳答案

试试这个:

"select table1.* from table1 inner join table2 on table2.user_id = table1.affiliate_id inner join table3 on table3.id = table2.user_idwhere table3.nickname like '%".mysql_real_escape_string($searchtext)."%'"

关于php - 在mysql中建立三张表的查询,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4541504/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com