使用Laravel ORM 建立Insert...Select 語句
可以使用Insert 來將另一個表格中的記錄插入新表中。 ..選擇語句。在 Laravel 中,您可以利用 Eloquent ORM 或原始 SQL 查詢來完成此任務。
Laravel Eloquent 的列綁定
使用 Laravel 的 Eloquent ORM,您可以利用使用 getBindings() 方法來取得先前建構的 Select 的綁定參數。這允許您重複使用已經準備好的語句。
<code class="php"><?php // Create the Select query $select = User::where(...) ->where(...) ->whereIn(...) ->select(['email', 'moneyOwing']); // Get the binding parameters $bindings = $select->getBindings(); // Construct the Insert query $insertQuery = 'INSERT INTO user_debt_collection (email, dinero) ' . $select->toSql(); // Execute the Insert query using the bound parameters DB::insert($insertQuery, $bindings);</code>
使用原始SQL 查詢
或者,您可以使用原始SQL 查詢來建立Insert...Select
<code class="php"><?php $insertQuery = '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; DB::insert($insertQuery);
Laravel 5.7 及更高版本
對於Laravel 5.7 及更高版本,可以使用insertUsing() 方法來簡化流程。
<code class="php"><?php DB::table('user_debt_collection')->insertUsing(['email', 'dinero'], $select);</code>
以上是如何使用 Laravel ORM 建立 Insert...Select 語句?的詳細內容。更多資訊請關注PHP中文網其他相關文章!