博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
SQL查询刚開始学习的人指南读书笔记(一)关系数据库和SQL介绍
阅读量:6643 次
发布时间:2019-06-25

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

PART I:Relational Databases and SQL

Chapter2, Ensuring Your Database Structure IsSound.

数据库设计准则

 

什么是关系数据库

RDBMS (A Relational database management systems)关系数据库

Tables

Tables are the mainstructures in the database. Each table always represents a

single, specific subject.

 

Fields

A field is the smallest structure in the database, and it represents a characteristic

of the subject of the table to which it belongs.

 

Records

A record represents a unique instance of the subject of a table.

 

Keys

Keys are special fields that play very specific roles with in a table.eg.

  • primary key
  • foreign key

 

主键的最主要作用是保证数据记录的唯一性,就是说主键约束要保证在一个数据库表里的全部的数据记录都是不同的个体,比如:身份证号码能够保证一个人在大陆范围内是一个独立的个体(弄错了的不算)。即一个身份证号码不能标识两个人或两个身份证号码标识一个人。所以主键是从现有的数据里分析出来的,不是设计人员任意加上去的。

 

Relationships

  • one-to-one
  • one-to-many
  • many-to-many

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

你可能感兴趣的文章
poj3192
查看>>
[LeetCode] N-Queens II
查看>>
FireFox支持innerText的方法
查看>>
使用vector需要注意的要点
查看>>
nginx负载均衡实现
查看>>
sqrt()的运用
查看>>
Windows Phone 8 蓝牙编程
查看>>
opengl 教程(12) 投影矩阵
查看>>
hdu 1455 搜索经典
查看>>
Android ViewPager使用详解
查看>>
win7 旗舰版 网上邻居访问问题
查看>>
【sas proc sql】汇总数据
查看>>
查看Apache并发请求数及其TCP连接状态
查看>>
压力测试工具
查看>>
匿名函数与闭包
查看>>
每日英语:Hard-Wired To Hate Exercise?
查看>>
结合UIImageView实现图片的移动和缩放 .
查看>>
【视频教学】Maclean教你用Vbox在Linux 6.3上安装Oracle 11gR2 RAC
查看>>
servlet过滤器1 解决字符集乱码 filter
查看>>
jabberd14 XMPP/Jabber server daemon
查看>>