Microsoft Access Database Development With VBA

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;
     
 

Home Copyright © 2011 FunctionX, Inc. Home