삽입물 생성... Laravel의 Select 문
Q: 삽입물 생성 방법... Laravel의 Eloquent ORM 또는 쿼리를 사용하여 문을 선택하시겠습니까? 다음 SQL 구문을 변환하는 데 어려움을 겪고 있습니다.
<code class="sql">Insert into Demand (Login, Name, ApptTime, Phone, Physician, Location, FormatName, FormatDate, FormatTime, ApptDate, FormatPhone, cellphone) Select Login, Name, ApptTime, Phone, Physician, Location, FormatName, FormatDate, FormatTime, ApptDate, FormatPhone, cellphone from " . [dbname] . " Where " . $where_statement</code>
A: 대부분의 버전에서는 Laravel에 직접적인 단일 쿼리 접근 방식이 없지만 대체 방법이 있습니다. 비슷한 결과를 얻습니다:
방법 1: 원시 SQL 및 바인딩 매개변수 사용
<code class="php">$select = User::where(...)->where(...)->select(['email', 'moneyOwing']); $bindings = $select->getBindings(); $insertQuery = 'INSERT into user_debt_collection (email, dinero) ' . $select->toSql(); DB::insert($insertQuery, $bindings);</code>
방법 2: insertUsing() 사용(Laravel 5.7 이상)
<code class="php">DB::table('user_debt_collection')->insertUsing(['email', 'dinero'], $select);</code>
참고: 이러한 메서드를 사용하면 기존 SELECT 문의 바인딩을 재사용하고 INSERT 문을 별도로 실행할 수 있습니다.
위 내용은 Laravel: Eloquent 및 쿼리 빌더 솔루션을 사용하여 Insert...Select 문을 만드는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!