I have two columns as below:
| Column A | Column B |
|---|---|
| A1 | NULL |
| A1 | A1 |
| B1 | C1. |
When i query these columns as below :
SELECT Column A, Column B from table where Column A != Column B
i am expecting the following result:
| Column A | Column B |
|---|---|
| A1 | NULL |
| B1. | C1 |
But my query is only giving me the second line as result.

