ement. | +----------------------------------+-----------------------------------------+ | CREATE | Create a table using the CREATE TABLE | | | statement. You can grant the CREATE | | | privilege on tables that do not yet | | | exist. | +----------------------------------+-----------------------------------------+ | CREATE VIEW | Create a view using the CREATE_VIEW | | | statement. | +----------------------------------+-----------------------------------------+ | DELETE | Remove rows from a table using the | | | DELETE statement. | +----------------------------------+-----------------------------------------+ | DELETE HISTORY | Remove historical rows from a table | | | using the DELETE HISTORY statement. | | | Displays as DELETE VERSIONING ROWS | | | when running SHOW GRANTS until MariaDB | | | 10.3.15 and until MariaDB 10.4.5 | | | (MDEV-17655), or when running SHOW | | | PRIVILEGES until MariaDB 10.5.2, | | | MariaDB 10.4.13 and MariaDB 10.3.23 | | | (MDEV-20382). From MariaDB 10.3.4. | | | From MariaDB 10.3.5, if a user has the | | | SUPER privilege but not this | | | privilege, running mariadb-upgrade | | | will grant this privilege as well. | +----------------------------------+-----------------------------------------+ | DROP | Drop a table using the DROP TABLE | | | statement or a view using the DROP | | | VIEW statement. Also required to | | | execute the TRUNCATE TABLE statement. | +----------------------------------+-----------------------------------------+ | GRANT OPTION | Grant table privileges. You can only | | | grant privileges that you have. | +----------------------------------+-----------------------------------------+ | INDEX | Create an index on a table using the | | | CREATE INDEX statement. Without the | | | INDEX privilege, you can still create | | | indexes when creating a table using | | | the CREATE TABLE statement if the you | | | have the CREATE privilege, and you can | | | create indexes using the ALTER TABLE | | | statement if you have the ALTER | | | privilege. | +----------------------------------+-----------------------------------------+ | INSERT | Add rows to a table using the INSERT | | | statement. The INSERT privilege can | | | also be set on individual columns; see | | | Column Privileges below for details. | +----------------------------------+-----------------------------------------+ | REFERENCES | Unused. | +----------------------------------+-----------------------------------------+ | SELECT | Read data from a Og7