computing Flashcards

1
Q

Describe an entity

A

An entity is an object about which a database will store information.

An entity can be a person, an object or something abstract.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Describe an attribute

A

An attribute is an item of information that relates to particular entity.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Describe and use a primary key

A

A primary key is a field which uniquely identifies a record in a database.

In database design, primary keys are underlined e.g. EmployeeID

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Describe and use a foreign key

A

A foreign key is a primary key from one table which is used in a second table to link the tables together.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Describe attribute types

A

Attributes can have different data types:

Text
Number
Date
Boolean

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Describe and use attribute size

A

The size of a Text attribute is the number of characters which will be stored. If the attribute size is too small, it may result in data being lost, The size of an attribute is a measure of how much space the field will take up when stored in main memory or backing storage. .

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Describe and use presence check validation

A

A presence check ensures that data is entered in a field.

Use a presence check to ensure important information is entered e.g. Name, Postcode date of birth mobile and email

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Describe and use restricted choice validation

A

Restricted choice limits data entry to a set of acceptable values.

Use a restricted choice check to limit data entry e.g. red, white, silver, black, blue and grey.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

Describe and use field length validation

A

Field length validation limits the number of characters that can be stored in a field.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

Describe and use range validation

A

Range check ensures that data falls between two values.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

Create an entity-relationship diagram

A

An entity relationship diagram (ERD) is a graphical representation of entities in a database, and their relationship to each other.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

Create a data dictionary

A

A data dictionary contains information about the tables and fields in a database.

The information (known as metadata) should include:

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

Design and implement a solution to a query

A

A query is a request for data from a database table or tables.

A query design should include

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

Describe and use SQL select operations

A

The SELECT statement selects data from a database. It can be followed by a list of individual field names, or the asterisk (*) symbol can be used to select all of the fields in the table.

The FROM command is used to specify which table(s) to select data from.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

Describe and use SQL order by operations

A

The ORDER BY statement sorts the results of an SQL query in ascending or descending order.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

Describe and use <, >, = in SQL operations

A

The less than (<), greater than (>) and equals (=) operators can be used with the WHERE clause to refine SQL queries.

17
Q

Describe and use AND, OR in SQL operations

A

The OR and AND operators can be used with the WHERE clause to refine SQL queries.