如何为MySQL中包含,
分隔符的表创建两个别名?
例如:
SELECT b.*,a.* FROM `tbl_users` a,b where a.id=b.parent_id.
答案 0 :(得分:0)
看起来你正在做一些自我加入,你可以这样做
select
a.*,b.* from tbl_users a
left join tbl_users b on a.id=b.parent_id
如果您只想要匹配记录,请将其设为inner join
而不是left join