Answers for "create table manually mysql"

SQL
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 "SQL"

Browse Popular Code Answers by Language