0

I have a database in Postgres that has multiple tables. One of them is group. I know that this is a reserved name. The question is how to insert data into that table.

k1k4ss0
  • 87
  • 10

1 Answers1

1

As documented in the manual you need to use double quotes:

insert into "group" (column_1, column_2)
values (42, 'foo');