The word end is a reserved word in Postgres, so I have a column named "end" in my database. So how do i execute a query to select that column? Query:
"SELECT column1, column2, column3, "end" FROM table";
doesn't work. I have also tried some combinations with backslash but nothing helped. I know that there are many other ways to solve this issue (renaming the column :) ) but I would like to learn how to find a solution in my occasion.