H Hungry Mar 20, 2006 #1 Hello. SELECT [Name]... What is Name referring to in the above statement? Thanks In Advance
J John Vinson Mar 20, 2006 #3 Hello. SELECT [Name]... What is Name referring to in the above statement? Click to expand... 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]
Hello. SELECT [Name]... What is Name referring to in the above statement? Click to expand... 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]