Guest User

Untitled

a guest
Dec 13th, 2018
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. CREATE TABLE my_table (
  2. id NUMBER NOT NULL CONSTRAINT my_table_pk PRIMARY KEY,
  3. -- lots of other columns that are updatable
  4. crt_ts TIMESTAMP(6) NOT NULL default CURRENT_TIMESTAMP,
  5. upd_ts TIMESTAMP(6) NOT NULL
  6. )
Add Comment
Please, Sign In to add comment