• 表改主键



    当一个表有主键,会有如下语句(local代表是分区表):
    alter table TR_GOV_FM_REGINFO_D add constraint PK_TR_GOV_FM_REGINFO_D primary key (FILE_TIME, IDCARD, FM_NUMBER) using index local;

    删除主键
    alter table TR_GOV_FM_REGINFO_D drop constraint PK_TR_GOV_FM_REGINFO_D ;

    然而会留下唯一索引
    create unique index PK_TR_GOV_FM_REGINFO_D on TR_GOV_FM_REGINFO_D (FILE_TIME, IDCARD, FM_NUMBER) local;

    再删除唯一索引
    drop index PK_TR_GOV_FM_REGINFO_D;

    至此变删除主键约束了

    然后加主键,注意主键字段不能为空,且不能重复。

    update TR_GOV_FM_REGINFO_D set data_type='1' where data_type is null ;
    alter table TR_GOV_FM_REGINFO_D add constraint PK_TR_GOV_FM_REGINFO_D primary key (FILE_TIME, data_type, IDCARD, FM_NUMBER) using index local;

    范例:

    alter table 表名 drop constraint 主键名 ;
    alter table 表名 add constraint 主键名 primary key (STAT_TIME, FID_IDX_NO) using index local;

  • 相关阅读:
    使用Delphi调用条形码控件BarTender打印标签
    我看过的书
    语法规则
    智能家居
    HAL库ADC的DMA采集
    HAL库串口中断接收
    触动心灵的一句话
    摄影技巧
    中国茶道
    单片机延时函数
  • 原文地址:https://www.cnblogs.com/jiangqingfeng/p/11311846.html
Copyright © 2020-2023  润新知