Introducing
Your new presentation assistant.
Refine, enhance, and tailor your content, source relevant images, and edit visuals quicker than ever before.
Trending searches
The more traditional things like booking an appointment with the doctor, school registers, government records, police records......
✳✱*
Each time we add data to the database we create a record
A record is all of the information about a person or thing
Made up of several 'fields'
A field is a single piece of information such as a name, a test score, a registration number etc.....
Shared:\Computing - ICT\KS4 - Computer Science GCSE (9-1)\Paper 2\Lesson 8
On SIMS that would be everything we hold about you, in a car sales database that would be all of the details about one car
Now create flashcards explaining:
A database is a structured set of data held in a way that makes it easy for people to access it.
To understand the terms database, field and record
To know what SQL is
To apply knowledge in created SQL queries on a database
3 flow chart symbols and their meaning
2 sorting algorithms
1 definition of the programming term 'variable'
What is a database?
WHERE makes our queries more powerful - only return values based upon certain conditions i.e. only return BMW cars
SELECT is a key term that asks the database to return something
Instead of SELECT * we can just type the name of the fields want to see i.e.
SELECT Make, Model FROM
cars
WHERE Make = 'BMW'
* Means all
FROM table_name gives the instruction of where to get the data from
If we had just one table for a booking system at the doctors imagine how many times we would need to store a patient name, DOB, gender, health?
Although many different database platforms exist, one of the most commonly used databases in industry is SQL - Structured Query Language
SQL is a relational database
This means that data isn't stored in just one table, but split over many tables - each entity will have a table of it's own to remove redundant data
Rather than looking at 450,000 cars, I need to ask the database some questions