
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
MySQL Query for Inequality Condition
Inequality means NOT EQUAL TO and MySQL have two inequality operator, ‘<>’ and ‘!=’. following MySQL queries shows the inequality conditions
mysql> Select tender_value From estimated_cost1 WHERE Name_company != 'Chd Ltd.';
The above query shows inequality condition because it have != operator.
mysql> Select tender_value From estimated_cost1 WHERE Name_company <> 'Chd Ltd.';
The above query shows inequality condition because it have <> operator.
Advertisements