📜  mysql 创建表 - SQL 代码示例

📅  最后修改于: 2022-03-11 15:05:29.981000             🧑  作者: Mango

代码示例5
#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));