MariaDB Question:

Explain me how to create a table in MariaDB's database?

Tweet Share WhatsApp

Answer:

First, you have to create a database in MariaDB follows by selecting the database and then create a table by using CREATE TABLE statement.

Syntax:
CREATE TABLE table_name (column_name column_type);

Download MariaDB PDF Read All 55 MariaDB Questions
Previous QuestionNext Question
Please explain what is the use of MariaDB DISTINCT clause?Do you know how To Change Innodb_page_size?