In other platforms, like SQL Server, you can create a table with automatic timestamp, like this:
create table sample (what integer, where char(8), when datetime default current_timestamp)
Thus, when you insert data in the tabke, like:
insert into sample (what, where) values (1, "Here")
The...