SQL - Structured Query Language | ||||||||||||||||||||||
Logical OperatorsLogical operators are used to test for the truth of some condition that returns a Boolean data type with a value of TRUE, FALSE or UNKNOWN. List of Logical Operators
Boolean Constants Databases and other programming environments provide operators you can use to perform data analysis. The operators used are called logical operators because they are used to perform comparisons that produce a result of true or false. TRUE and FALSE Constants In Boolean algebra, something is considered TRUE when it holds a value. The value is also considered like 1 or Yes. By contrast, if something doesn't hold a value, it is considered non-existent and non-worthy of consideration. Such a thing has a value of FALSE, 0 or No. To retrieve such a value, you can just find out if the value of a field is existent or not. NULL Constant While the True and False constants are used to find out whether a Boolean field has a positive or a negative value, the database provides another constant used to find out whether a field is empty. This can be done using the NULL constant. When a field holds a value, the value would be considered using the comparison operators we will learn shortly. If the field is empty, it holds a value of NULL. More Reference URL: http://technet.microsoft.com/en-us/library/ms189773.aspx |
* * * * *