0
에 해당하는 웅변 쿼리 무엇
:이 함께 올라와있다등가 웅변 쿼리
SELECT `ip`
FROM items INNER JOIN ips ON items.client_id = ips.cient_id
WHERE serial_key = 12345
:
DB::table('items')
->join('ips', 'items.cient_id', '=', 'ips.client_id')
->where('items.serial_key', Request::get('serial_key'))
->select('ip')
->first();
그것은 NULL을 반환합니다.
레코드를 찾으면 어떻게 알 수 있습니까?
F의 * CK는 내가 바보 :-) 해요 – adredx