美文网首页
table的创建

table的创建

作者: wayoona | 来源:发表于2017-10-31 15:09 被阅读0次

    语法:

    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