在 Laravel 中创建插入... Select 语句
问: 如何创建插入...使用 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 创建 Insert...Select 语句:Eloquent 和查询生成器解决方案?的详细内容。更多信息请关注PHP中文网其他相关文章!