Databases Flashcards
What is the SQL for update?
UPDATE Player (Table)
SET (what ur changing)TelNo=“029822223”, Allergies = True
WHERE(what ur doing) Fullname = “Tara Nwolum”
What is the SQL for Delete?
DELETE FROM Player
WHERE Number “0976728824” AND Address “2 Tambour”
What is the SQL for Insert?
INSERT INTO product (productName,productCode,nO)
VALUES “screwdriver”,”SC11”,31)
What is the point in of GDPR?
To make sure that the personal data is kept safe
What is a field?
The name of each column in a database (e.g., “First_Name”)
What is a data type?
Text, Number, Date
What is size?
Rules that check if the data is correct
What is validation?
Rules that check if the data is correct
What is presence check?
Checks that a field is not left empty.
What is restricted choice?
Limits input to a set of predefined options.
What is range check?
Ensures a number is within a certain range.
What is a length check?
Ensures input is a certain number of characters long
What is the SQL for Select?
SELECT name ,teamname (field)
FROM players , team (tables)
WHERE position = “goalkeeper”
AND players.teamid=team.teamid
ORDER BY DESC