thinkphp 多表查询出错了。 5
$WithdrawRecord=D('withdraw_record');$WithdrawRecords=$WithdrawRecord->table('withdra...
$WithdrawRecord=D('withdraw_record');
$WithdrawRecords=$WithdrawRecord->table('withdraw_record w','user u')
->where('w.user_id=u.id')
->field('u.nickname,w.update_time')->select(); 展开
$WithdrawRecords=$WithdrawRecord->table('withdraw_record w','user u')
->where('w.user_id=u.id')
->field('u.nickname,w.update_time')->select(); 展开
展开全部
$WithdrawRecord = D('WithdrawRecord');
$WithdrawRecords = $WithdrawRecord->table('withdraw_record w,user u')
->where('w.user_id=u.id')
->field('u.nickname,w.update_time')->select();
注意table方法内的参数
也可以
$WithdrawRecords = $WithdrawRecord->table('__WITHDRAW_RECORD__ w,__USER__ u')
->where('w.user_id=u.id')
->field('u.nickname,w.update_time')->select();
此处会把__WITHDRAW_RECORD__与__USER__替换为真实的表名
$WithdrawRecords = $WithdrawRecord->table('withdraw_record w,user u')
->where('w.user_id=u.id')
->field('u.nickname,w.update_time')->select();
注意table方法内的参数
也可以
$WithdrawRecords = $WithdrawRecord->table('__WITHDRAW_RECORD__ w,__USER__ u')
->where('w.user_id=u.id')
->field('u.nickname,w.update_time')->select();
此处会把__WITHDRAW_RECORD__与__USER__替换为真实的表名
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询