SQL is the standardized language for interacting with Relational Databases, enabling operations such as insertion, searching, updating, and deletion of database records.
The SQL statement below retrieves all records from the “Customers” table:
SELECT * FROM Customers; |
SQL keywords are case-insensitive, meaning “select” is treated the same as “SELECT”.
However, for consistency, this tutorial will use SQL keywords in upper-case.
In some database systems, a semicolon is necessary at the end of each SQL statement.
It serves as the standard delimiter for separating multiple SQL statements within a single server call.
Throughout this tutorial, we will ensure to include a semicolon at the end of each SQL statement.