SQL - Structured Query Language |
NOT OperatorNOT operator is used to validate something truth of some condition that returns a Boolean data type with a value of True or False. The following query is used to identify non empty product remarks record(s) from PRODUCT Table. -- Example 44 --
SELECT * FROM Product
SELECT * FROM Product WHERE Remarks IS NOT NULL Query Output Screen |
* * * * *