84669 personnes étudient
152542 personnes étudient
20005 personnes étudient
5487 personnes étudient
7821 personnes étudient
359900 personnes étudient
3350 personnes étudient
180660 personnes étudient
48569 personnes étudient
18603 personnes étudient
40936 personnes étudient
1549 personnes étudient
1183 personnes étudient
32909 personnes étudient
表1有 id uname
表2有uid,但是没有uname,
要求查出 表1.id=表2.uid 并且输出表一的uname,并对结果分页
大体语法类似User::hasOneRecord()::pagination(12)
do you know?
拥有18年软件开发和IT教学经验。曾任多家上市公司技术总监、架构师、项目经理、高级软件工程师等职务。 网络人气名人讲师,...
$result = DB::table('表1') ->join('表2', '表1.id', '=', '表2.uid') ->select('表1.uname') ->paginate(12);
OR
$result = table1::leftJoin('table2', 'table1.id', '=', 'table2.uid')->select('table1.uname')->paginate(12);
OR