关于代码中的 where 条件的问题
$data01=M()->table(array('mk_user'=>'user','mk_userinfo'=>'info'))->where('user.id=info.user_id')->select(); dump($data01);
这里的 where('user.id=info.user_id') 为什么不是 where('user.id=info.id')
这两个条件查询的结果是一样的 注意等号 右侧是不一样的 :
一个是:info.user_id
另一是:info.id