我有这个问题。
我需要从我的匹配表中获取这些字段:
date, points
然后epos_id
我的匹配表中也有一个字段..
我有另一个rbpos_epos
表,其中有epos_id
和location
字段。
我需要location
从rbpos_epos
使用连接中获取 .. 是这样的:
SELECT matching.date, matching.points, matching.time,matching.location,matching.epos_id,rbpos_epos.epos_id,rbpos_epos.location
FROM matching WHERE matching.user_id="'.$id_user.'"
LEFT JOIN rbpos_epos where matching.epos_id=rbpos_epos.epos_id;