over 9 years ago
employee_id | name | code | designation | salary |
---|---|---|---|---|
101 | ABC | E-101 | Engineer | 12000 |
102 | DEF | E-102 | Doctor | 8000 |
103 | GHI | E-103 | Software Developer | 8000 |
104 | JKL | E-104 | CEO | 12000 |
105 | MNO | E-105 | Software Developer | 100000 |
!= operator example :-
Now Run this Query, we will see the output below :-
employee_id | name | code | designation | salary |
---|---|---|---|---|
102 | DEF | E-102 | Doctor | 8000 |
103 | GHI | E-103 | Software Developer | 8000 |
104 | JKL | E-104 | CEO | 12000 |
105 | MNO | E-105 | Software Developer | 100000 |
We can see here, that only those Records are displayed whose name column value is not equal to 'ABC'
0 Comment(s)