Région de recherche :

Date :

https://dev.mysql.com › doc › refman › 8.0 › en › create-table.html

15.1.20 CREATE TABLE Statement - MySQL

CREATE TABLE creates a table with the given name. You must have the CREATE privilege for the table. By default, tables are created in the default database, using the InnoDB storage engine. An error occurs if the table exists, if there is no default database, or if the database does not exist.

https://www.w3schools.com › mysql › mysql_create_table.asp

MySQL CREATE TABLE Statement - W3Schools

Syntax. CREATE TABLE table_name (. column1 datatype, column2 datatype, column3 datatype, .... ); The column parameters specify the names of the columns of the table. The datatype parameter specifies the type of data the column can hold (e.g. varchar, integer, date, etc.).

https://www.mysqltutorial.org › mysql-basics › mysql-create-table

MySQL CREATE TABLE - MySQL Tutorial

The CREATE TABLE statement allows you to create a new table in a database. The following illustrates the basic syntax of the CREATE TABLE statement: column1 datatype constraints, column2 datatype constraints, ... In this syntax: table_name: This is the name of the table that you want to create. column1, column2, etc.:

https://dev.mysql.com › doc › refman › 8.0 › en › creating-tables.html

5.3.2 Creating a Table - MySQL

Use a CREATE TABLE statement to specify the layout of your table: species VARCHAR(20), sex CHAR(1), birth DATE, death DATE); VARCHAR is a good choice for the name, owner, and species columns because the column values vary in length. The lengths in those column definitions need not all be the same, and need not be 20.

https://www.mysqltutorial.net › mysql-create-table

Creating a table in MySQL - MySQL Tutorial

The CREATE TABLE statement is used to create a new table in the MySQL database. The following illustration shows the generic syntax for creating a table in the MySQL database.

Creating a table in MySQL - MySQL Tutorial

https://www.sqlshack.com › mysql-create-table-statement-with-examples

MySQL Create Table statement with examples - SQL Shack

This article explains the MySQL create table statement with examples. I have covered the create table syntax and how to view the definition of the table using MySQL workbench and MySQL command-line tool.

MySQL Create Table statement with examples - SQL Shack

https://www.mysqltutor.com › mysql-create-table

MySQL CREATE TABLE

In MySQL, the CREATE TABLE statement is used to create a new table in a database. This statement allows you to define the table’s structure by specifying the columns, their data types, and any constraints or properties associated with each column.

https://www.sqliz.com › mysql › table-create

MySQL Create Table Tutorial and Examples

The CREATE TABLE statement creates a table named table_name. The table names can consist of letters, numbers, underscores, and dollar signs, and column names can be up to 64 characters long. The table names must be unique within a database. The newly created table will be in the current default database.

https://www.techonthenet.com › mysql › tables › create_table.php

MySQL: CREATE TABLE Statement - TechOnTheNet

MySQL: CREATE TABLE Statement. This MySQL tutorial explains how to use the MySQL CREATE TABLE statement with syntax and examples. The MySQL CREATE TABLE statement allows you to create and define a table. In its simplest form, the syntax for the CREATE TABLE statement in MySQL is: column1 datatype [ NULL | NOT NULL ],

https://tecadmin.net › mysql-create-table

Creating Tables in MySQL Database: A Comprehensive Guide - TecAdmin

To create a table in MySQL, you need to use the CREATE TABLE statement. The general syntax is as follows: ADVERTISEMENT. Let’s break down the syntax: ADVERTISEMENT. table_name: The name of the table to be created. column: The name of each column in the table. datatype: The data type of each column (e.g., INT, VARCHAR, DATE, etc.). 2.