P
permana77
Guest
Table:
AIN_TEST1
Coloumn/Field:
ASK
---
A
B
C
Query:
SELECT ASK FROM AIN_TEST1
Result:
ASK
----
A
B
C
But the result that I want is:
ASK
----
A
A
C
What sample of query syntax or query statement on Microsoft Access could change the data like the data above?
If I'm using Oracle Query, I would get the result from the query:
SELECT DECODE(ASK,'B','A') FROM AIN_TEST1
AIN_TEST1
Coloumn/Field:
ASK
---
A
B
C
Query:
SELECT ASK FROM AIN_TEST1
Result:
ASK
----
A
B
C
But the result that I want is:
ASK
----
A
A
C
What sample of query syntax or query statement on Microsoft Access could change the data like the data above?
If I'm using Oracle Query, I would get the result from the query:
SELECT DECODE(ASK,'B','A') FROM AIN_TEST1