I have a column with different values :
1
2
4
8
I want to create a new column in the same table based on these values.
For example, if the value is 1 or 4
, I want to display the corresponding line in OK
and NOT OK
for the rest.
Like:
1 OK
2 NOT OK
4 OK
8 NOT OK
I think we should use an if
condition, but how to create at same time with the column values in the table?
Better use Case statement.
Fiddle