IT How Tos

Home

About

Sitemap

Contact

Create a table in SQL

  • Here explains how to create a table in SQL
    • How to create a table in examples of SQL: MySQL or Mariadb

Command

  • This is the SQL command to be changed accordingly
CREATE TABLE table_name (
    column1 datatype,
    column2 datatype,
    column3 datatype,
   ....
);

Reference