expr1001

melda11

Registered User.
Local time
Today, 12:36
Joined
Sep 18, 2007
Messages
34
I want to change the column name after I have run my select query.The column name is currently expr1001.How can I do this??

Thanks
 
Melda,

If you don't want Access supplying the names change the SQL to:

Code:
Select Field1 As FieldNumber1,
       Field2 As Whatever,
       Field3 As [Two Words]
From   SomeTable


In the Query grid, just make the field:

FieldNumber1: [Field1]

Wayne
 

Users who are viewing this thread

Back
Top Bottom