返回卡包市场

Databases

暂无描述。系统推荐的高质量记忆内容,适合每天坚持背诵学习。

卡片总数: 24内容版本: v4公开卡包更新时间: 8/1/2026

卡片预览 (24 张)

#1
正面 (问题)

Data model

背面 (解答)

An abstract model of which things to store and what information about them should be recorded

#2
正面 (问题)

Entity

背面 (解答)

A thing about which data is to be stored

#3
正面 (问题)

Attributes

背面 (解答)

Characteristics or other information about entities

#4
正面 (问题)

Databases

背面 (解答)

Tables used to store multiple entities

#5
正面 (问题)

Entity identifier

背面 (解答)

An attribute given to each entity that is unique within the table

#6
正面 (问题)

Entity description

背面 (解答)

The name of the table is shown outside of brackets (which contain each of the attributes)

#7
正面 (问题)

Relational databses

背面 (解答)

The tables in a database are connected by common attributes

#8
正面 (问题)

Entity relationship diagrams

背面 (解答)

Used to graphically represent the relationships between tables in a database

#9
正面 (问题)

Primary key

背面 (解答)

An attribute that provides a unique identifier for every entity in the database table

#10
正面 (问题)

Foreign key

背面 (解答)

The attribute that is the primary key in the other, connected table

#11
正面 (问题)

Composite primary key

背面 (解答)

Combining multiple attributes that act as a primary key

#12
正面 (问题)

Many-to-many relationships

背面 (解答)

A new linking table must be created

#13
正面 (问题)

Database normalisation

背面 (解答)

The process of making a database efficiency without compromising the integrity of the data

#14
正面 (问题)

Advantages of normalisation

背面 (解答)

• Reduced redundancies • Faster searching, sorting and querying of data • Easier maintenance • Improves data integrity

#15
正面 (问题)

First normal form

背面 (解答)

No repeating attributes (data must be atomic)

#16
正面 (问题)

Second normal form

背面 (解答)

• Be in 1NF • No partial key dependencies

#17
正面 (问题)

Partial key dependencies

背面 (解答)

When a non-key attribute doesn’t depend on the entire composite primary key

#18
正面 (问题)

Third normal form

背面 (解答)

• Be in 2NF • Have no non-key dependencies

#19
正面 (问题)

Non-key dependencies

背面 (解答)

When a non-key attribute is dependent on other no-key attributes instead of the primary key

#20
正面 (问题)

SQL

背面 (解答)

An easy to learn, declarative language used with databases

#21
正面 (问题)

SELECT

背面 (解答)

• Used for retrieving data from a database table • SELECT <attribute> FROM <table> WHERE <condition></condition></attribute>

#22
正面 (问题)

UPDATE

背面 (解答)

• Used for modifying the attributes of an existing entity • UPDATE <table> SET <attribute> = <value> WHERE <attribute> = <value></value></attribute></value></attribute>

#23
正面 (问题)

DELETE

背面 (解答)

• Used for removing entities from a database • DELETE FROM <table> WHERE <condition></condition>

#24
正面 (问题)

INSERT

背面 (解答)

• Used to add new records to an existing table • INSERT INTO <table> (<column1>, <column2>, …) VALUES (<value1>, <value2>, …)</value2></value1></column2></column1> • INSERT INTO <table> VALUES (<value1>, <value2>, …)</value2></value1>