Databases Flashcards

1
Q

What is the SQL for update?

A

UPDATE Player (Table)
SET (what ur changing)TelNo=“029822223”, Allergies = True
WHERE(what ur doing) Fullname = “Tara Nwolum”

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

What is the SQL for Delete?

A

DELETE FROM Player
WHERE Number “0976728824” AND Address “2 Tambour”

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

What is the SQL for Insert?

A

INSERT INTO product (productName,productCode,nO)

VALUES “screwdriver”,”SC11”,31)

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

What is the point in of GDPR?

A

To make sure that the personal data is kept safe

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

What is a field?

A

The name of each column in a database (e.g., “First_Name”)

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

What is a data type?

A

Text, Number, Date

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

What is size?

A

Rules that check if the data is correct

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

What is validation?

A

Rules that check if the data is correct

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

What is presence check?

A

Checks that a field is not left empty.

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

What is restricted choice?

A

Limits input to a set of predefined options.

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

What is range check?

A

Ensures a number is within a certain range.

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

What is a length check?

A

Ensures input is a certain number of characters long

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

What is the SQL for Select?

A

SELECT name ,teamname (field)

FROM players , team (tables)

WHERE position = “goalkeeper”
AND players.teamid=team.teamid

ORDER BY DESC

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