Public Sector

We've had the pleasure of working with UK and overseas central and local government departments, including Healthcare (NHS and Foundation Trusts), Defence, Education (Universities and colleges), many of the main Civil Service departments, Emergency Services; also public-owned corporations including the BBC, Bank of England, Ordnance Survey, and regulatory bodies such as Ofgem.

We are registered on Crown Commercial Service’s (CCS) Dynamic Purchasing System (RM6219 Training and Learning) and also with numerous tender portals such as Ariba, Coupa and Delta E-Sourcing.

Read more...

Graduate Training Schemes

Framework Training has a strong track record of providing a solid introduction into the working world for technical graduates across myriad industries. We provide the opportunity to learn and gain valuable hands-on experience in a supportive, friendly and sociable training environment.

Attract & retain the brightest new starters

We know it is vital for our clients to invest in the future of their talented grads; not only to provide them with high-quality, professional training essential for their roles, but to embed them within the organisation’s culture and guide them on the right path to a successful career.

After all, your new hires could well be the next leaders and their creative ideas and unique insights are invaluable to your business.

Read more ...

Learning & Development

Our unique portfolio of high-quality technical courses and training programmes are industry-respected. They’re carefully designed so that delegates can seamlessly apply what they’ve learnt back in the workplace. Our team of domain experts, trainers, and support teams know our field — and all things tech — inside out, and we work hard to keep ourselves up to speed with the latest innovations. 

We’re proud to develop and deliver innovative learning solutions that actually work and make a tangible difference to your people and your business, driving through positive lasting change. Our training courses and programmes are human-centred. Everything we do is underpinned by our commitment to continuous improvement and learning and generally making things much better.

Read more...

Corporate & Volume Pricing

Whether you are looking to book multiple places on public scheduled courses (attended remotely or in our training centres in London) or planning private courses for a team within your organisation, we will be happy to discuss preferential pricing which maximise your staff education budget.

Enquire today about:

  • Training programme pricing models  

  • Multi-course voucher schemes

Read more...

Custom Learning Paths

We understand that your team training needs don't always fit into a "one size fits all" mould, and we're very happy to explore ways in which we can tailor a bespoke learning path to fit your learning needs.

Find out about how we can customise everything from short overviews, intensive workshops, and wider training programmes that give you coverage of the most relevant topics based on what your staff need to excel in their roles.

Read more...

Introduction to SQL Training Course

Take control of your database: query, manipulate, and understand your data.

About the course

Learn to explore and manage your data with our Introduction to SQL Programming course. Designed for individuals with little to no prior database experience, this workshop provides a solid understanding of the inner workings of relational databases.

Web developers will learn to enhance the functionality of data-driven web applications, while business analysts will gain the skills to effectively manipulate and analyse data.

We can tailor the course to focus on your database of choice, for instance Microsoft SQL Server, PostgreSQL, Oracle, MongoDB, MySQL - or SQLite for IoT applications.

This SQL course is available for private / custom delivery for your team - as an in-house face-to-face workshop at your location of choice, or as online instructor-led training via MS Teams (or your own preferred platform).

Get in touch to find out how we can deliver tailored training which focuses on your project requirements and learning goals.

    • Write SQL queries to retrieve and manipulate data from relational databases.
    • Design and create database tables to store structured information.
    • Understand and apply data integrity constraints to ensure data accuracy.
    • Combine data from multiple tables using joins and subqueries.
    • Use SQL to create views, indexes, and stored procedures.
  • This course is ideal for individuals who:

    • Want to learn the fundamentals of SQL and relational databases

    • Need to work with databases in their current or future roles

    • Are looking to gain practical skills in data retrieval and manipulation

  • To gain most benefit from this course, you should be comfortable working with computers and have a basic understanding of data concepts (e.g. files, spreadsheets).

    We can customise the training to match your team's experience and needs - for instance with more time and coverage of fundamentals for budding new data professionals. Get in touch to find out how.

  • This SQL course is available for private / custom delivery for your team - as an in-house face-to-face workshop at your location of choice, or as online instructor-led training via MS Teams (or your own preferred platform).

    Get in touch to find out how we can deliver tailored training which focuses on your project requirements and learning goals.

  • Introduction to Databases and SQL

    • Welcome and Course Outline

    • What is a Database?

    • Why Use a Database? (Emphasize benefits for different roles)

    • Relational Databases:

      • Core Concepts (Tables, Rows, Columns, Keys)

      • Examples of Popular Relational Database Management Systems (RDBMS)

    • SQL and RDBMS: The language of relational databases

    • Introduction to NoSQL Databases:

      • Key characteristics and types (Key-Value, Document, Column-Family, Graph)

      • Examples of Popular NoSQL Databases

    • Relational vs. NoSQL: Key Differences and Use Cases

    Querying Data with the SELECT Statement

    • Structured Query Language (SQL): Overview and Importance

    • Basic SELECT statement: Selecting all columns (*)

    • Selecting specific attributes (columns)

    • Eliminating duplicate rows with DISTINCT

    • Filtering Data with the WHERE Clause:

      • Comparison operators (=, >, <, >=, <=, !=)

      • Logical operators (AND, OR, NOT)

    • Sorting Data with the ORDER BY Clause:

      • Ascending (ASC) and descending (DESC) order

      • Ordering by multiple columns

      • Combining ORDER BY and WHERE

    • Limiting results with LIMIT (or TOP in some systems)

    • SQL Comments (--, /* ... */)

    Advanced SELECT Techniques

    • Filtering with Range and Membership: IN, NOT IN, BETWEEN, NOT BETWEEN

    • Aggregate Functions: MIN(), MAX(), COUNT(), AVG(), SUM()

    • Date and Time Functions: Introduction to common date/time functions (system-specific examples could be useful)

    • Pattern Matching: LIKE operator with wildcards (%, _)

    • Renaming Columns and Tables: AS alias

    • Grouping Data: GROUP BY clause

    • Filtering Groups: HAVING clause

    • Handling Missing Values: NULL values, IS NULL, IS NOT NULL

    • Conditional Logic: CASE statement (simple and searched CASE)

    Data Definition Language (DDL) - Table Management

    • SQL DDL: Overview of commands for defining database schema

    • CREATE DATABASE (and schema concepts)

    • CREATE TABLE: Defining table structure, column names, and data types

    • Common Data Types (with examples across different RDBMS if relevant)

    • ALTER TABLE: Modifying table structure (adding, modifying, dropping columns, constraints)

    • DROP TABLE: Removing tables

    • Viewing Table Metadata (system-specific commands or tools)

    • GENERATED ALWAYS AS (if applicable to common RDBMS)

    Database Design Fundamentals

    • Introduction to Database Design Principles

    • Database Normalization: Goals and benefits

    • First Normal Form (1NF)

    • Second Normal Form (2NF)

    • Third Normal Form (3NF)

    • Brief mention of higher normal forms (optional)

    Data Manipulation Language (DML) - Data Maintenance

    • SQL DML: Overview of commands for manipulating data

    • INSERT INTO: Adding new rows

    • Inserting data from another table (INSERT INTO ... SELECT)

    • UPDATE: Modifying existing data

    • DELETE FROM: Removing rows

    • Data Constraints:

      • NOT NULL

      • UNIQUE

      • PRIMARY KEY

      • FOREIGN KEY (and referential integrity)

      • CHECK constraints

      • Defining constraints at the table and column level

    Querying Multiple Tables

    • The Need for Joining Tables

    • UNION, UNION ALL Operators (combining result sets)

    • Table Joins:

      • INNER JOIN (and the ON clause)

      • LEFT JOIN (or LEFT OUTER JOIN)

      • RIGHT JOIN (or RIGHT OUTER JOIN)

      • FULL OUTER JOIN (availability across RDBMS)

      • Cross Joins (Cartesian Products)

      • Self-Joins

    • Subqueries (Nested Queries):

      • Subqueries in the WHERE clause

      • Subqueries in the SELECT clause (correlated and non-correlated)

      • IN, NOT IN with subqueries

      • ANY, SOME, ALL with subqueries

      • EXISTS, NOT EXISTS operators

    Views, Indexes, and Introduction to Stored Procedures

    • SQL Views:

      • Introduction to views (virtual tables)

      • CREATE VIEW

      • ALTER VIEW (if supported)

      • DROP VIEW

      • Uses and benefits of views

    • Temporary Tables: CREATE TEMPORARY TABLE (local and global temporary tables)

    • SQL Indexes:

      • Introduction to indexes (improving query performance)

      • CREATE INDEX (single and composite indexes)

      • DROP INDEX

      • Considerations for index creation

    • Introduction to Stored Procedures:

      • What are stored procedures?

      • Benefits of using stored procedures

      • CREATE PROCEDURE (basic syntax)

      • EXECUTE (or CALL) stored procedures

    SQL Data Integrity and Transactions

    • Data Quality: Importance and challenges

    • Ensuring Data Quality through Database Rules (Constraints)

    • Database Triggers:

      • Introduction to triggers (event-driven actions)

      • CREATE TRIGGER (basic syntax: BEFORE, AFTER, INSERT, UPDATE, DELETE)

      • DROP TRIGGER

      • Considerations for using triggers

    • Transactions:

      • Introduction to transactions (grouping operations)

      • ACID Properties (Atomicity, Consistency, Isolation, Durability)

      • BEGIN TRANSACTION (or START TRANSACTION)

      • COMMIT

      • ROLLBACK

    Course Wrap-up and Next Steps

    • Review of key concepts

    • Further learning resources

    • Q&A

Trusted by

Amadeus Services company logo CERN organisation logo AMEC company logo

Public Courses Dates and Rates

Please get in touch for pricing and availability.

Related courses