G
Guest
I have a large table with several fields in it. Some of the fields have
values of 0 and numbers larger than zero. I need to write an update or
append (not sure which) that will read all of the values and convert any
digits >0 to a 1.
So, for example, it field1 has the following values before:
0
1
3
0
9
I need the query to update or produce:
0
1
1
0
1
Any ideas on how I can accomplish this?
values of 0 and numbers larger than zero. I need to write an update or
append (not sure which) that will read all of the values and convert any
digits >0 to a 1.
So, for example, it field1 has the following values before:
0
1
3
0
9
I need the query to update or produce:
0
1
1
0
1
Any ideas on how I can accomplish this?