Trying to execute a standard insert query, but it doesn\'t work.
INSERT INTO users (vk_id, eu_name, eu_society, eu_notes, eu_want_team)
VALUES (\"123123133\"
The phpPgAdmin UI provides two links for running SQL - one in the main body of the page, and one in the menu bar at the top of the page.
The one in the main body of the page will throw the error you're seeing if you run a data definition statement like CREATE TABLE.
However, the one in the menu bar will run data definition queries with no problem.
In short:
screen