How to do it...

  1. Identify the target table that needs to be updated.
  2. Identify the source table from which the update is to be done:
update test01.web_clicks a -- Target update tablefrom test02.wed_address b -- Source update tableset acc_last_date= date -- Target column that's need to updatedwhere a.Rego_Start_Dt between '2016-12-25' and '2017-01-28' -- Partition column

Get Teradata Cookbook now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.