Table of Contents

Search

  1. Preface
  2. Mappings
  3. Mapplets
  4. Mapping Parameters
  5. Mapping Outputs
  6. Generate a Mapping from an SQL Query
  7. Dynamic Mappings
  8. How to Develop and Run a Dynamic Mapping
  9. Dynamic Mapping Use Cases
  10. Mapping Administration
  11. Export to PowerCenter
  12. Import From PowerCenter
  13. Performance Tuning
  14. Pushdown Optimization
  15. Partitioned Mappings
  16. Developer Tool Naming Conventions

Developer Mapping Guide

Developer Mapping Guide

INSERT, UPDATE and DELETE Syntax

INSERT, UPDATE and DELETE Syntax

Use the following syntax to create valid INSERT, UPDATE and DELETE statements:
  • Use the following syntax for an INSERT statement:
    INSERT INTO <TABLENAME> [<list>] <select query>
  • Use the following syntax for an UPDATE statement:
    UPDATE [schema .] { table | view} [ alias ] SET column = { expr | subquery } [, column = { expr | subquery }]... [WHERE condition]
  • Use the following syntax for a DELETE statement:
    DELETE FROM <Table> [[<AS>] <ALIAS>] [WHERE condition]

0 COMMENTS

We’d like to hear from you!