• SQL NOTES
    What is SQL?
    SQL stands for Structured Query Language
    SQL lets you access and manipulate databases
    SQL became a standard of the American National Standards Institute (ANSI) in 1986, and of the International Organization for Standardization (ISO) in 1987

    SQL is a Standard – BUT….
    Although SQL is an ANSI/ISO standard, there are different versions of the SQL language.

    However, to be compliant with the ANSI standard, they all support at least the major commands (such as SELECT, UPDATE, DELETE, INSERT, WHERE) in a similar manner.

    Database Tables
    A database most often contains one or more tables. Each table is identified by a name (e.g. “Customers” or “Orders”), and contain records (rows) with data.

    In this tutorial we will use the well-known Northwind sample database (included in MS Access and MS SQL Server).

    Below is a selection from the Customers table used in the examples: 7 months ago