You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
UPDATE"agent_report_document"SET"agent_report_document_state_id"= @zzz_BatchUpdate_0,
"date_update"= @zzz_BatchUpdate_1,
"common_error"= @zzz_BatchUpdate_2
WHERE EXISTS ( SELECT1FROM (SELECTa.idAS"Id"FROM agent_report_document AS a
WHEREa.id= @__agentReportDocumentId_0) B
WHERE"agent_report_document"."id"= B."id"
)
Exception
I receive an error like below.
42703: column b.id does not exist
Is it possible to somehow reduce the reading of data?
We will look if that's possible to do something or not.
At first sight, the issue happens due to case sensibility when selecting the column. The alias "Id" is used instead of the column name id. I'm not sure if we are aware of the alias name used for the primary key but we will look at it.
Here is what to include in your request to make sure we implement a solution as quickly as possible.
Description
I am trying to update multiple fields using a condition
Generated SQL query:
I am trying to do a projection to reduce data reading
Generated SQL query:
Exception
I receive an error like below.
42703: column b.id does not exist
Is it possible to somehow reduce the reading of data?
Further technical details
The text was updated successfully, but these errors were encountered: