ModelTrains
Programmer
Every table in my database has a LAST_UPDATE_DT (Timestamp) column. What are my options to make this an automatically updated field when an application updates the record?
Example:
COMPANY table:
company_key
company_name
last_update_dt
The programmer would use the following SQL:
"insert into company values (company_key, company_name)"
or at a later time in the application:
"update company set company_name=[variable] where company_key=123"
Example:
COMPANY table:
company_key
company_name
last_update_dt
The programmer would use the following SQL:
"insert into company values (company_key, company_name)"
or at a later time in the application:
"update company set company_name=[variable] where company_key=123"