QuestionQ162
Database SecurityExamine the following commands and output:

Jane must create a temporary table named TOTALSALES in the SALES database.
Which statement grants Jane the necessary privileges while following the principle of least privilege?
- A GRANT CREATE TEMPORARY TABLES ON sales.totalsales TO jane;
- B GRANT CREATE TEMPORARY TABLES ON sales.* TO jane;
- C GRANT ALL ON sales.* TO jane;
- D GRANT CREATE TEMPORARY TABLES, INSERT, UPDATE, DELETE, SELECT ON sales.totalsales TO jane;
Community Discussion