PostgreSQL update timestamp when row is updated
PostgreSQL update timestamp when row is updated
In PostgreSQL, if you want to set current timestamp as default value, you can simply keep a column's default expression as 'now()'. However, by default there is no function defined to update the timestamp when a particular row (or multiple rows) are updated. In such...Read More