이 글에서는 주로 Laravel 프레임워크 데이터베이스의 CURD 작업, 일관성 있는 작업 및 체인 작업에 대한 요약을 소개합니다. 이 글에는 데이터베이스 작업에 일반적으로 사용되는 많은 방법이 포함되어 있습니다.
테이블의 모든 행 검색 $users = DB::table('users')->get();
foreach ($users as $user)
{
var_dump($user->name);
}
$user = DB::table('users')->where('name', 'John')->first(); var_dump($user->name);
단일 열의 행 검색
$name = DB::table('users')->where('name', 'John')->pluck('name');
열 값 목록 검색
$roles = DB::table('roles')->lists('title');
이것 메소드는 배열 헤더를 반환합니다. 또한 사용자 정의 키 열을 지정하여 배열을 반환할 수도 있습니다.
$roles = DB::table('roles')->lists('title', 'name');
Select 절 지정
$users = DB::table('users')->select('name', 'email')->get(); $users = DB::table('users')->distinct()->get(); $users = DB::table('users')->select('name as user_name')->get();
기존 쿼리에 추가된 Select 절 $query = DB::table('users') ->select( '이름');
$users = $query->addSelect('age')->get();
where
$users = DB::table('users')->where('votes', '>', 100)->get();
OR
$users = DB::table('users')->where('votes', '>', 100)->orWhere('name', 'John')->get();
Where Between
$users = DB::table('users')->whereBetween('votes', array(1, 100))->get();
Where Not Between
$users = DB::table('users')->whereNotBetween('votes', array(1, 100))->get();
배열이 있는 곳
$users = DB::table('users')->whereIn('id', array(1, 2, 3))->get(); $users = DB::table('users')->whereNotIn('id', array(1, 2, 3))->get();
Where Null 사용 설정되지 않은 값이 있는 레코드를 찾으려면
$users = DB::table('users')->whereNull('updated_at')->get();
Order By, Group By, And Have
$users = DB::table('users')->orderBy('name', 'desc')->groupBy('count')->having('count', '>', 100)->get();
Offset & Limit
$users = DB::table('users')->skip(10)->take(5)->get();
2. Connections
Joins
Query Building 생성자는 다음과 같을 수도 있습니다. 조인 문을 작성하는 데 사용됩니다. 다음 예를 살펴보세요.
기본 Join 문DB::table('users') ->join('contacts', 'users.id', '=', 'contacts.user_id') ->join('orders', 'users.id', '=', 'orders.user_id') ->select('users.id', 'contacts.phone', 'orders.price') ->get();
Left Join 문
DB::table('users') ->leftJoin('posts', 'users.id', '=', 'posts.user_id') ->get(); DB::table('users') ->join('contacts', function($join) { $join->on('users.id', '=', 'contacts.user_id')->orOn(...); }) ->get(); DB::table('users') ->join('contacts', function($join) { $join->on('users.id', '=', 'contacts.user_id') ->where('contacts.user_id', '>', 5); }) ->get();
III. Grouping
때로는 "exists" 또는 Nested와 같은 고급 where 절을 만들어야 할 수도 있습니다. 매개변수 그룹화. Laravel 쿼리 빌더는 다음을 처리할 수 있습니다: DB::table('users')->where('name', '=', 'John')
->orWhere(function($query)
{
$query->where('votes', '>', 100)
->where('title', '<>', 'Admin');
})
->get();
select * from users where name = 'John' or (votes > 100 and title <> 'Admin') Exists Statements DB::table('users') ->whereExists(function($query) { $query->select(DB::raw(1)) ->from('orders') ->whereRaw('orders.user_id = users.id'); }) ->get();
위 쿼리는 다음 SQL을 생성합니다:
select * from userswhere exists ( select 1 from orders where orders.user_id = users.id )
쿼리 구성 컴파일러는 통계, 최대, 최소, 평균 및 합계와 같은 다양한 집계 방법도 제공합니다. 집계 방법 사용
$users = DB::table('users')->count(); $price = DB::table('orders')->max('price'); $price = DB::table('orders')->min('price'); $price = DB::table('orders')->avg('price'); $total = DB::table('users')->sum('votes');
때때로 원시 표현식 쿼리를 사용해야 할 수도 있습니다. 이러한 표현식은 쿼리 문자열에 삽입되므로 SQL 삽입 지점을 만들지 않도록 주의하세요! 열 값
$users = DB::table('users') ->select(DB::raw('count(*) as user_count, status')) ->where('status', '<>', 1) ->groupBy('status') ->get();
추가 열 업데이트를 지정할 수도 있습니다.
DB::table('users')->increment('votes'); DB::table('users')->increment('votes', 5); DB::table('users')->decrement('votes'); DB::table('users')->decrement('votes', 5);
Insert records into table
DB::table('users')->increment('votes', 1, array('name' => 'John'));
Insert records into table with auto-incremented ID
, 자동 증가가 있습니다. id 필드는 insertGetId를 사용하여 레코드를 삽입하고 ID를 검색합니다.DB::table('users')->insert( array('email' => 'john@example.com', 'votes' => 0) );
테이블에 여러 레코드 삽입
$id = DB::table('users')->insertGetId( array('email' => 'john@example.com', 'votes' => 0) );
DB::table('users')->insert(array( array('email' => 'taylor@example.com', 'votes' => 0), array('email' => 'dayle@example.com', 'votes' => 0), ));
Five.Deletes
테이블의 레코드 삭제
DB::table('users') ->where('id', 1) ->update(array('votes' => 1));
테이블 삭제 모두 삭제 중 테이블의 레코드
DB::table('users')->where('votes', '<', 100)->delete();
DB::table('users')->delete();
쿼리 작성기는 두 쿼리를 "union"하는 빠른 방법도 제공합니다.
DB::table('users')->truncate();
비관적 잠금
쿼리 빌더에는 SELECT 문에 도움이 되는 몇 가지 "비관적 잠금" 기능이 포함되어 있습니다. SELECT 문 "공유 잠금"을 실행하려면 sharedLock 메서드를 사용하여 쿼리할 수 있습니다.$first = DB::table('users')->whereNull('first_name'); $users = DB::table('users')->whereNull('last_name')->union($first)->get();
DB::table('users')->where('votes', '>', 100)->sharedLock()->get();
7. 캐시 쿼리
쉽게 캐시할 수 있습니다. 쿼리 결과는 니모닉을 사용하여 캐시됩니다.DB::table('users')->where('votes', '>', 100)->lockForUpdate()->get();
이 예에서는 쿼리 결과가 10분 동안 캐시됩니다. 쿼리 결과가 캐시되면 데이터베이스에 대해 실행되지 않으며 결과는 애플리케이션에서 지정한 기본 캐시 드라이버에서 로드됩니다. 캐싱을 지원하는 드라이버를 사용하는 경우 캐시에 태그를 추가할 수도 있습니다.
$users = DB::table('users')->remember(10)->get();
위 내용은 모두의 학습에 도움이 되기를 바랍니다. PHP 중국어 웹사이트로!
관련 추천:
PHP CURL CURLOPT위 내용은 Laravel 프레임워크 데이터베이스의 CURD 작업 및 일관된 작업 분석의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!