What are serial files
What are sequential files?
What are sequential files?
What are databases used for?
What is the Database Management System (DBMS)
What are databases made up of?
Why is a flat file database bad?
What do entity relationship models show
What are primary Keys
What is seconday keys?
What is normalisation?
How do you go from 0NF to 1NF
How to get from 1NF to 2NF
How do you convert from 2NF to 3NF
What is SQL?
What is the command for deleting data?
DELETE from FORM WHERE Forename = ‘9C’
What is the command for inserting a new row into the table
INSERT INTO Form VALUES (‘10C’, ‘Miss. Badman’, ‘B12’)
What is the command for querying a database?
SELECT Forename FROM Form WHERE FORM = ‘7R’
What is the command for updating an existing command
UPDATE Form SET Formteacher = ‘Joey’ WHERE Forename = ‘7R’
What is the command for creating a new table?
CREATE TABLE Staff(
StaffID INT PRIMARY KEY;
Name VARCHAR(20);
JoinDate date-time;
Age int;
Gender boolean;
)
What is transaction processing?
What transactional statments do all databses have?
CRUD
- Create
- Read
- Update
- Delete
What does the A.C.I.D rules do?
They are a set of rules that ensure data integraty
What is atomicity?