MariaDB:使用存在子句进行 SQL 删除的问题
<p>我在 MariaDB 中运行此选择,它按预期工作,它只是一个带有 <code>exists</code> 的选择:</p>
<pre class="brush:php;toolbar:false;">select * from pred_loan_defaults d
where exists (select 1 from pred_loan_defaults d2
where d.exec_id = d2.exec_id and d.loan_identifier = d2.loan_identifier
and d2.default_status = 1 and d.prediction_date > d2.prediction_date)
order by loan_identifier, prediction_date</pre>
<p>现在,我正在尝试删除所选的行,因此我调整了语句:</p>
<pre class="brush:php;toolbar:false;">delete from pred_loan_defaults d
where exists (select * from pred_loan_defaults d2
where d.exec_id = d2.exec_id and d.loan_identifier = d2.loan_identifier
and d2.default_status = 1 and d.prediction_date > d2.prediction_date);</pre>
<p>但是我收到一个错误:</p>
<blockquote>
<p>SQL 错误 [1064] [42000]: (conn=6) 您的 SQL 中有错误
句法;检查与您的 MariaDB 服务器对应的手册
在 'd 附近使用正确语法的版本</p>
</blockquote>
<p><code>delete</code> 语句有什么问题?</p>