Create insert-only table in PostgreSQL

Viewed 5261

Is there an SQL statement to create an insert-only table in PostgreSQL (v9.5); in other words, with write permissions it is possible to add rows, but not possible to change existing rows?

CREATE TABLE public.newtable

Tables are only updated with INSERT statements, not using UPDATE or DELETE statements.

1 Answers
Related