语法:
create table table_name(
column1 datatype,
primary key( one or more columns )
);
举例:
create table users(
id int primary key not null,
name text not null
)
语法:
create table table_name(
column1 datatype,
primary key( one or more columns )
);
举例:
create table users(
id int primary key not null,
name text not null
)
本文标题:table的创建
本文链接:https://www.haomeiwen.com/subject/lisbpxtx.html
网友评论