P
Preying Mentis
I have a table that has over a hundred fields (about 150). I am trying
to select all the fields but one (149).
I am doing this through code and am not using the Access Query builder
due to variables being concatenated into the SQL string.
Is there a SQL keyword out there that I can use to exclude a certain
field, but return all the others?
I do NOT want to, unless forced to, create a query like this:
Select Field1, Field2, Filed3, Filed4, Field5, etc..... From Table1
It will be VERY tedious and cumbersome.
Please tell me there is a way I can create a query simular to this:
Select *, NOT Field149 From Table1
Thank you for any support you can give.
In dire need and programming agony,
Preying Mentis
to select all the fields but one (149).
I am doing this through code and am not using the Access Query builder
due to variables being concatenated into the SQL string.
Is there a SQL keyword out there that I can use to exclude a certain
field, but return all the others?
I do NOT want to, unless forced to, create a query like this:
Select Field1, Field2, Filed3, Filed4, Field5, etc..... From Table1
It will be VERY tedious and cumbersome.
Please tell me there is a way I can create a query simular to this:
Select *, NOT Field149 From Table1
Thank you for any support you can give.
In dire need and programming agony,
Preying Mentis