I have a table temp with 2 columns roll and attendanceas
roll attendance
--------------
1 A
2 P
3 NA
I want to print this table as
roll attendance
--------------
1 Absent
2 Present
3 Not applicable
I have a table temp with 2 columns roll and attendanceas
roll attendance
--------------
1 A
2 P
3 NA
I want to print this table as
roll attendance
--------------
1 Absent
2 Present
3 Not applicable
You can use a
case
expression: