MySQL – Between Operator Table of content MySQL Between Operator The BETWEEN operator in MySQL is a logical operator provided by SQL, that is used to restrict the range from which the data values are to be retrieved. The retrieved values can be integers, characters, or dates. You can use BETWEEN operator to replace a […]
Author Archives: user
MySQL – Intersect Operator Table of content In mathematical set theory, the intersection of two sets is a set that contains only those elements that are common to both sets. In other words, the intersection of two sets is a set of elements that exist in both sets. If we perform the intersection operation on […]
MySQL – NOT EQUAL Operator Table of content MySQL NOT EQUAL Operator The MySQL NOT EQUAL operator is used to compare two values and return true if they are not equal. It is represented by “<>” and “!=”. The difference between these two is that <> follows the ISO standard, but != doesn”t. So, it […]