190k views
4 votes
How to give permission to table in postgresql

1 Answer

1 vote

Final answer:

To give permissions to a table in PostgreSQL, use the GRANT command.

Step-by-step explanation:

To give permissions to a table in PostgreSQL, you can use the GRANT command. To give permissions to a table in PostgreSQL, use the GRANT command. This command allows you to grant various privileges to users or roles. For example, to give all privileges on a table called 'students' to a user named 'johndoe', you can use the following SQL:

GRANT ALL PRIVILEGES ON students TO johndoe;

To give permissions to a table in PostgreSQL, use the GRANT command. This grants all available privileges, such as SELECT, INSERT, UPDATE, DELETE, and more, to the user 'johndoe' on the table 'students'.

User James Jackson
by
7.0k points