ALTER TABLE Add adds multiple field foreign KEY constraints

Source: Internet
Author: User
/* CREATE TABLE and set PRIMARY key */creation table
 table_user
(
 user_id INT IDENTITY () not NULL,
 user_name NVARCHAR (max) not NULL,
 last_updated_by    NVARCHAR (last_updated_date),    DATETIME,
CONSTRAINT user_pk PRIMARY KEY (user_id)
);


/*alter table adds multiple fields */
ALTER table Table_user ADD 
 department_id int not NULL
, company_id int. not null
 
  ,temp_col NVARCHAR (Ten)
;


/*alter table adds multiple foreign keys *
/ALTER table Table_user ADD 
CONSTRAINT user_department_fk FOREIGN key (department_id) REFERENCES table_department (department_id) 
, CONSTRAINT user_company_fk FOREIGN KEY (company_id) REFERENCES TABLE _company (company_id) 
 ;


/*alter Table Delete field */
ALTER table Table_user DROP COLUMN temp_col;
 

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.