We have a custom type that contains a field company_department. Due to department restructuring, it is necessary to change the company_department drop-down (done via Composer) and the current company_department values. I would like to run the update with SQL Oracle since there are millions of changes.
I have logged into DA and ran the select statement and converted the DQL to 'Show in SQL' - same results (great).
When I run the following update statement in DQL...
update custom_type object
set company_department = 'Membership and Contact Centre Services'
where company_department = 'Contact Centre'
the SQL (in attachment) is completely different...
How do I convert the DQL to SQL to have it run in Oracle SQL.
Thank you