SQL (OCR GCSE Computer Science)

Revision Note

Robert Hampton

Written by: Robert Hampton

Reviewed by: James Woodhouse

SQL

What is SQL?

  • SQL (Structured Query Language) is a programming language used to interact with a DBMS.

  • SQL allows users to locate specific information in a database table using these basic SQL commands:

    • Select - what field(s) do you want to retrieve?

    • From - which table(s) do you want to search?

    • Where - what condition is there?

Selecting Data Commands


Command


Description

Example

SELECT

Retrieves data from a database table

SELECT *
(retrieves all data from the table)

SELECT name, age
(retrieves names and ages from the table)

FROM

Specifies the tables to retrieve data from

SELECT *
FROM users;
(retrieves all data from the 'users' table)

SELECT name, age
FROM users;
(retrieves names and ages from the 'users' table)

WHERE

Filters the data based on a specified condition

SELECT *
FROM users
WHERE age > 30;
(Retrieves all users older than 30)

  • The '*' symbol is called a 'wildcard', it selects all fields in the table

Examples

  • Select all the fields from the Customers table

Command:

SQL query snippet: "SELECT * FROM Customers;" in a code editor highlighting "SELECT" in purple and "FROM" in pink, both on a black background.


Output:

ID

Name

Age

City

Country

1

John Doe

30

New York

USA

2

Jane Doe

25

London

UK

3

Peter Lee

40

Paris

France

 

  • Select the ID, name & age of customers who are older than 25

Command:

SQL query written on a black background with colored keywords. The query selects the ID, name, and age from the Customers table where age is greater than 25.

Output:

ID

Name

Age

1

John Doe

30

3

Peter Lee

40

Worked Example

The database table Stock stores the current stock levels of products currently on sale.

ProdName

Quantity

Price

Biscuits

143

0.99

Bread

87

1.49

Milk

34

1.10

Pasta

421

0.89

Ketchup

287

2.99

Complete the SQL query to return the product name and quantity of all products that's price is less than £1 [3]

Table with three rows labeled SELECT, FROM, and WHERE, commonly used in SQL query structure. Each label is in a separate cell in the first column.

Answer

SQL query for selecting "ProdName" and "Quantity" from "Stock" table where "Price" is less than 1, shown in a table format.

Guidance

  • Spelling of field names and table name must be exact

  • Capitalisation must match field and table names to be awarded marks

  • Table name is always in the question in different format

Last updated:

You've read 0 of your 10 free revision notes

Unlock more, it's free!

Join the 100,000+ Students that ❤️ Save My Exams

the (exam) results speak for themselves:

Did this page help you?

Robert Hampton

Author: Robert Hampton

Expertise: Computer Science Content Creator

Rob has over 16 years' experience teaching Computer Science and ICT at KS3 & GCSE levels. Rob has demonstrated strong leadership as Head of Department since 2012 and previously supported teacher development as a Specialist Leader of Education, empowering departments to excel in Computer Science. Beyond his tech expertise, Robert embraces the virtual world as an avid gamer, conquering digital battlefields when he's not coding.

James Woodhouse

Author: James Woodhouse

Expertise: Computer Science

James graduated from the University of Sunderland with a degree in ICT and Computing education. He has over 14 years of experience both teaching and leading in Computer Science, specialising in teaching GCSE and A-level. James has held various leadership roles, including Head of Computer Science and coordinator positions for Key Stage 3 and Key Stage 4. James has a keen interest in networking security and technologies aimed at preventing security breaches.