Answers for "mysql create table database"

SQL
7

create table mysql query

create table tutorials_tbl(
   tutorial_id INT NOT NULL AUTO_INCREMENT,
   tutorial_title VARCHAR(100) NOT NULL,
   tutorial_author VARCHAR(40) NOT NULL,
   submission_date DATE,
   PRIMARY KEY ( tutorial_id )
);
Posted by: Guest on August-18-2020
1

creating table in MySQL

#Assuming that there is a database called MyDatabase
#creates a table called TableName, with columns Name, Age, and Class
Use MyDatabase;
create table TableName(
  No. int primary key,
  Name varchar(50),
  Age int,
  Class varchar(15));
Posted by: Guest on April-20-2021

Code answers related to "mysql create table database"

Code answers related to "SQL"

Browse Popular Code Answers by Language