SQL Statement (in Access)

  • Thread starter Thread starter Hungry
  • Start date Start date
H

Hungry

Hello.
SELECT [Name]...

What is Name referring to in the above statement?
Thanks In Advance
 
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]
 
Back
Top