(select source_user_name from tweets t where t.rt_user_name = u.user_name)现在MySQL给我一个错误,说这个子查询返回多行。例如,如果user_name是james,并且子查询返回(琳达、鲍勃、苏珊娜、桑迪、汤姆),那么我希望数据显示为:詹姆斯·鲍勃詹姆斯·桑迪如何从我已有的资源中获得此功能我还看到这类似于内连接,但我想要从子查询</e
基本上,这是一个来自另一个站点的表,我正在抓取它,然后将其插入到MySQL表中。= implode("','", $rowArray); // seperate the array contents with commas and apostrophes, set up for mysqlcomma_separated . "'"; // add apostrophes to beginning and end of the string