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
where B.request_ID = A.request_ID
and B.report_Name = A.report_name
and B.report_type = A.report_type
and C.systemname = 'system'
and C.propname = B.report_name || '.' || B.report_type || '.OutputFmt'
and C.PROPVALUE in ('yes','No') ), display_format)
where request_id = 123
Regards,