MariaDB Question:
Explain me how to create a table in MariaDB's database?
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);
Syntax:
CREATE TABLE table_name (column_name column_type);
Previous Question | Next Question |
Please explain what is the use of MariaDB DISTINCT clause? | Do you know how To Change Innodb_page_size? |