- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Write down the MySQL query which shows 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.
- Related Articles
- Write down the MySQL query which shows equality condition?
- MySQL Sum Query with IF Condition?
- MySQL Sum Query with IF Condition using Stored Procedure
- MySQL query to update different fields based on a condition?
- How to use count with CASE condition in a MySQL query?
- MySQL query to get result by month and year based on condition?
- Economic Inequality
- Perform SUM and SUBTRACTION on the basis of a condition in a single MySQL query?
- Write a single MySQL query to return the ID from the corresponding row which is a NOT NULL value
- MongoDB query condition on comparing 2 fields?
- Condition Variables within Sub-Query in SAP
- MongoDB query condition to compare two fields?
- Nesbitt’s Inequality in C++
- MySQL query to return only the rows which are numeric?
- MongoDB query with an 'or' condition?

Advertisements