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.
Asked
Active
Viewed 22 times
0

k1k4ss0
- 87
- 10
1 Answers
1
As documented in the manual you need to use double quotes:
insert into "group" (column_1, column_2)
values (42, 'foo');