Is there a way to define a datetime column and populate it automatically when a row is inserted, without having to use a trigger?
The value would be the point in time w
Yes, use a default:
default
create table test_table (d_col datetime default current_timestamp)