OVERVIEW   1 FROM   2 SELECT   3 WHERE   4 GO BACK   ←

SQL: Overview

SQL stands for Structured Query Language. It is used as a means of interacting with databases. Following is an example of an SQL statement.

SELECT *

FROM vendors

WHERE idno = 114;

SELECT, FROM, and WHERE are among the most commonly used keywords in SQL. They will be covered in the following pages.