In PostgreSQL, when granting sequences, can I grant only USAGE instead of both SELECT, USAGE?

Viewed 852

I read answers about granting sequences in PostgreSQL. Generally, they say to grant both SELECT, USAGE. I wonder if I can grant only USAGE. Which one is best practice in granting sequences and why?

1 Answers
Related