Query and creation of Oracle primary key, Federated primary key

Source: Internet
Author: User

--Query whether a table has a unique primary key

Select cu.* from User_cons_columns cu, user_constraints au where cu.constraint_name = Au.constraint_name and Au.constraint _type = ' P ' and au.table_name = ' table name '

--Query whether a table has a federated primary key

Select cu.* from User_cons_columns cu, user_constraints au where cu.constraint_name = Au.constraint_name and Au.constraint _type = ' U ' and au.table_name = ' table name '

--Create unique primary key

ALTER TABLE name add constraint pk_table primary key (ID); --pk_table refers to the name of the primary key, and the ID in parentheses refers to the unique primary key of the table.

--Create a federated primary key

ALTER TABLE name add constraint ak_table unique (name,age,sex); --ak_table refers to the name of the Federated primary Key, and the name,age,sex in parentheses refers to the Union primary key of the table.

Query and creation of Oracle primary key, Federated primary key

Related Article

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.