Oracle Modify Constraints

Source: Internet
Author: User

Create a member Table

DROP TABLE member PURGE; CREATE TABLE member (    Mid         number,    name     VARCHAR2) ;

Modify Table Constraints

Syntax: ALTER table name ADD CONSTRAINT constraint name constraint type (field) [Other options]

To add a primary key constraint to a member table
ALTER TABLE member ADD CONSTRAINT pk_mid PRIMARY KEY (mid);

Description: For the five constraints: the above syntax is used to check (check), unique (unique), primary key (PRIMARY key), foreign key (FOREIGN key) four class constraints.
If you want to add a non-null constraint to a table, there is only one way to do so, using the Modify table structure, such as
ALTER TABLE member MODIFY (name VARCHAR2 () not NULL)

Delete Table constraint

Grammar ALTER TABLE DROP CONSTRAINT constraint name Delete member table PRIMARY KEY constraint ALTER TABLE DROP CONSTRAINT Pk_mid;

Oracle Modify Constraints

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.