MySQL CREATE TABLE The MySQL CREATE TABLE command is used to create a new table into the database. A table creation command requires three things: Name of the table Names of fields Definitions for each field Syntax: Following is a generic syntax for creating a MySQL table in the database. CREATE TABLE table_name (column_name column_type...); Example: Here, we will create a table named "cus_tbl" in the database "customers". CREATE TABLE cus_tbl( cus_id INT NOT NULL AUTO_INCREMENT, cus_firstname VARCHAR(100) NOT NULL, cus_surname VARCHAR(100) NOT NULL, PRIMARY KEY ( cus_id ) ); See the created table: Use the following command to see the table already created: SHOW tables; To see the table structure: DESCRIBE cus_tbl; Subscribe channel on YouTube Read this post on Blogger Like page on Facebook Tweet about video on twitter...
Ipctrd is an global learning & technical YouTube & Blog platform. The motive of the channel is to educate people on different technology at free of cost. We are covering all the technology in computer and technical concept of mobile as well.
