我如何使用查询构建器执行此查询:
SELECT code FROM client WHERE code
// =(SELECT max(code) FROM client where code LIKE '" . $year . "%')";
我试试这个:
$row = Client::find(DB::table('client')->max('code'));
但返回null
答案 0 :(得分:4)
试试这个:
Client::where('code', 'LIKE', $year . '%')->max('code');