Search the Whole World Here.,.,

SQL - NOT BETWEEN Operator with Text Value Example




The following SQL statement selects all products with a ProductName beginning with any of the letter NOT BETWEEN 'C' and 'M':

Example

SELECT * FROM Products
WHERE ProductName NOT BETWEEN 'C' AND 'M';

Try it Yourself »


EmoticonEmoticon