首頁  >  文章  >  資料庫  >  如何使用 Laravel ORM 建立 Insert...Select 語句?

如何使用 Laravel ORM 建立 Insert...Select 語句?

Linda Hamilton
Linda Hamilton原創
2024-11-05 05:25:02917瀏覽

How to Create Insert...Select Statements with Laravel ORM?

使用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中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn