SQL Keywords: ALL
Introduction
The ALL keyword is used in conjunction with the asterisk "*" in a SELECT statement to select all fields from a table or a query. The formula to use is:
SELECT ALL * FROM WhatObject;
Here is an example:
SELECT ALL * FROM Employees;