1
vote
2answers
415 views
Oracle update to teradata update with select subquery
Here is the oracle query .Can anybody give me teradata query .
update table_a A
set display_format = nvl((select prop.propvalue from table_a B,
table_c C …
1
vote
1answer
187 views
UPDATE from recursive query
Is it possible to do an update from a recursive query in one SQL statement without using a temporary table?
I am trying to set the very top boss id for each employee and I get the …