I have two columns in specific table in Postgres. When new row is inserted, I want to know how to automatically insert data in two column
So if I have a table insert table_name( nombre) values ('xxxxxx'). I want that creation_date(current day) and creation_user(current user in database) also inserted in the table.
Thanks for your help.
Best,