Home »
MCQs »
MariaDB MCQs
We can create a table by using the ____ command and get the list of all existing tables by using the ____ command in MariaDB.
11. We can create a table by using the ____ command and get the list of all existing tables by using the ____ command in MariaDB.
- CREATE, USE
- CREATE, SHOW
- CREATE TABLE, SHOW TABLE
- CREATE TABLE, SHOW TABLES
Answer: D) CREATE TABLE, SHOW TABLES
Explanation:
We can create a table by using the CREATE TABLE command and get the list of all existing tables by using the SHOW TABLES command in MariaDB.