DB2 database creates a table and adds a primary key to the table and creates an SQL statement for the performance and intermediate table

Source: Internet
Author: User
Tags db2

Create a role table

CREATE TABLE Nbctxp. Tbl_nbc_nonbankrole (
ID BIGINT not NULL,
ROLENAME VARCHAR (50),
Createtime TIMESTAMP,
UpdateTime TIMESTAMP,
CONSTRAINT p_id PRIMARY KEY (ID)
);

CREATE INDEX SQL150130091455900 on NBCTXP. Tbl_nbc_nonbankrole (ID);

Let the primary key increment by 1
Alter table Nbctxp. Tbl_nbc_nonbankrole ALTER column ID set generated always as identity (start with 1,increment by 1)

Create an intermediate table of role tables and user tables

CREATE TABLE Nbctxp. Tbl_nbc_nonbankur (
USERID BIGINT not NULL,
Roleid BIGINT not NULL,
CONSTRAINT pk_ur PRIMARY KEY (Userid,roleid),
CONSTRAINT fk_uid FOREIGN KEY (USERID) REFERENCES nbctxp. Tbl_nbc_nonbankuser (ID),
CONSTRAINT Fk_rid FOREIGN KEY (Roleid) REFERENCES nbctxp. Tbl_nbc_nonbankrole (ID)
);

CREATE INDEX Pk_ur on NBCTXP. Tbl_nbc_nonbankur (Userid,roleid);



DB2 database creates a table and adds a primary key to the table and creates an SQL statement for the performance and intermediate table

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.