I have a table that looks like this
user_id | name | created_on | updated_on
--------------------------------------------------
1 | Peter D | 1/1/2009 |
If I insert or update a record, I'd like a trigger to update the updated_on field with datetime('now'). But I can't find the function name to target the most recently updated row in sqlite3. Is there one?