I have created a new table called db.public.newTable
.
Now I need to give this table access to the role developer in Snowflake. What will the correct query grant this table access to the role developer?
If you want to grant all privileges you can do it like this:
GRANT ALL PRIVILEGES ON TABLE db.public.newTable TO ROLE developer;
This is well documented here.