• 主键约束 primary key


    主键的作用: 可以唯一标识 一条数据,每张表里面只能有一个主键,。
    主键特性: 非空且唯一。当表里没有主键的时,第一个出现的非空且为唯一的列,被当成主键。

    例子:
    create table tb3(
        id int primary key,
        name varchar(20) not null
    );


    唯一标识 一条数据

    #删除主键约束
    mysql -> alter table tb3
               -> drop primary key

    #添加主键约束
    mysql> alter table tb3
             -> add primary key(id);

  • 相关阅读:
    2019年计划书单
    redis 分布式锁实现
    filter-grok,dissect匹配数据
    nohup-长期运行进程
    filter
    kill
    watch
    free
    jar
    tree
  • 原文地址:https://www.cnblogs.com/mariobear/p/9180164.html
Copyright © 2020-2023  润新知