Examveda

The table that lists the column level privileges is . . . . . . . .

A. columns_priv

B. db

C. tables_priv

D. procs_priv

Answer: Option A

Solution (By Examveda Team)

This question is asking about the table in MySQL that stores information about column-level privileges. Column-level privileges determine who can access and modify specific columns within a table.

Here's the breakdown of the options:

Option A: columns_priv - This is the correct answer. The columns_priv table stores information about column-level privileges, allowing you to manage access to individual columns within your database.

Option B: db - This table stores information about databases. It does not contain column-level privileges.

Option C: tables_priv - This table stores information about table-level privileges. It tells you who has access to read, write, or delete entire tables.

Option D: procs_priv - This table stores information about stored procedure privileges. It determines who can execute stored procedures within your database.

Therefore, the answer is Option A: columns_priv.

This Question Belongs to MySQL >> MySQL Miscellaneous

Join The Discussion

Related Questions on MySQL Miscellaneous