Navicatfor in MySQL Add foreign key method

Source: Internet
Author: User

Environment: Navicatformysql 8.2 + MySQL Sever 5.1

Problem: Add foreign key in Navicatformysql

Solution

Method One:

To create a foreign key by using an SQL statement:

ALTER TABLE FOREIGN KEY table add constraint constraint

name foreign key (field name) references reference table (foreign key field name) on delete restrict/set Null/cascade 

on Update Restrict/set Null/cascade;

Without specifying the name of the foreign key, MySQL will automatically create a foreign key name for you:

ALTER TABLE FOREIGN key table add foreign key (field name) references reference table (foreign key field name) on delete 

restrict/set null/cascade on update restrict/set Null/cascade;

Method Two:

Use the graphical interface.

Select Table-------> Right-------> Design table-------> Foreign key-------> Fill Options.

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.