SQL Statement (in Access)

H

Hungry

Hello.
SELECT [Name]...

What is Name referring to in the above statement?
Thanks In Advance
 
J

John Vinson

Hello.
SELECT [Name]...

What is Name referring to in the above statement?

The field (mis)named Name in some table (which is presumably specified
in the FROM clause of your SQL statement).

Note that Name is a reserved word, and a bad choice of fieldname.

John W. Vinson[MVP]
 
Top