博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
SQL PRIMARY KEY,SQL FOREIGN KEY
阅读量:5844 次
发布时间:2019-06-18

本文共 1230 字,大约阅读时间需要 4 分钟。

A primary key is defined as a column or a group of column that their value are always be unique. Normally, NULL value will never be allowed in this column to be part of this column’s records.

EXAMPLE :

Let’s say we want to create a table name Users. The PRIMARY KEY will be user_id for that table.

SQL statement is:

CREATE TABLE USERS (

user_id SMALLINT NOT NULL PRIMARY KEY,
user_name VARCHAR(50),
)

OR

CREATE TABLE USERS (

user_id SMALLINT NOT NULL ,
user_name VARCHAR(50),
PRIMARY KEY(user_id)
)

 

 

Foreign key is use to referential to the unique parent table.

Foreign Key will point to the Primary key of the Parent table.
This will not allow primary from parent table to be deleted without clearing the record of the child table.

 

EXAMPLE :

 

Let’s say we want to create 2 tables name users and departments.

and have to create FOREIGN KEY in users table to link to the department table

 

SQL statement :

 

CREATE TABLE DEPARTMENTS (

department_id SMALLINT NOT NULL PRIMARY KEY,
department_name VARCHAR(50),
)

 

And the users table will be like this:

 

SQL statement is:

 

CREATE TABLE USERS (

user_id SMALLINT NOT NULL PRIMARY KEY,
user_name VARCHAR(50),
department_id SMALLINT NOT NULL ,
FOREIGN KEY (department_ID) references DEPARTMENTS
)

 

 

 

转载地址:http://luqcx.baihongyu.com/

你可能感兴趣的文章
关于Retinex图像增强算法的一些新学习。
查看>>
工厂模式
查看>>
Map value类型不同的写法
查看>>
Android Studio中解决jar包重复依赖导致的代码编译错误
查看>>
spring cloud 微服务调用--ribbon和feign调用
查看>>
Rails IDE 有很多选择,但是具体到ubuntu 64bit 选择的余地就不多了,这里选择Aptana Studio 3 Beta...
查看>>
leetcode1007
查看>>
部署虚拟环境
查看>>
vue的移动app项目中,自定义拖拽指令的问题
查看>>
利用Python查看微信共同好友
查看>>
php 批量修改mysql 数据表,字段 字符集编码
查看>>
Apache、tomcat、Nginx常用配置合集
查看>>
线程安全的单例模式
查看>>
XE5 Android 开发实现手机打电话和发短信 [转]
查看>>
checking size of char… configure: error: cannot compute sizeof (char) 解决方法
查看>>
markdown流程图画法小结
查看>>
大数据小白系列——HDFS(1)
查看>>
SDOI2017 新生舞会
查看>>
单线程+异步协程
查看>>
Windows Azure 安全最佳实践 - 第 6 部分:Azure 服务如何扩展应用程序安全性
查看>>