以下のように cfquery を使用して Update Query を起動しようとしています
<cfquery name = "UpdateRecord"
dataSource = #DATASOURCE#
username = #DBUSER#
password = #DBPASSWORD#
result="updateResult" >
update table1
set field1=( select field1 from table2 where field3='Some Value')
where field4='someothervalue'
</cfquery>
<cfdump var="#UpdateResult#">
しかし、このページを実行すると、ページが読み込まれず、ステータスバーに長い間読み込まれていることがわかります。
しかし、次のような単純な更新クエリを使用すると
update table1 set field1='abc' where field4='someothervalue'
その後、正常に動作しています
cfqueryを使用して上記のようなクエリを実行する方法を知っている人はいますか?
ありがとう