What is the statement to give access to a table to a user?
GRANT SELECT, INSERT, UPDATE, DELETE ON [TableName] TO UserName
What is the statement to remove access to a table to a user?
REVOKE SELECT, INSERT, UPDATE, DELETE ON [TableName] TO UserName
What is the statement to make sure that a user does not have access to a table?
DENY SELECT, INSERT, UPDATE, DELETE ON [TableName] TO UserName