Relational e Logical Operations |
Relational Operators
|
I rifornimenti di base visivi un insieme di sei operatori relazionali per confrontare le grandezze di due dati stima ed i confronti possono essere fatti con numerico o mettono insieme i valori, con un valore booleano restituito dal confronto.
|
La seguente tabella ricapitola questi Relational Operators
|
Operator |
Use |
= |
Tests whether two values are equal. |
<> |
Tests whether two values are not equal. |
< |
Tests whether the first value is less than the second value. |
> |
Tests whether the first value is greater than the second value. |
<= |
Tests whether the first value is less than or equal to the second
value. |
>= |
Tests whether the first value is greater than or equal to the second
value. |
|
Nel seguente esempio, il valore booleano allineare � assegnato a Result2 ed il valore booleano falso � assegnato a Result1.Value1 variabile non � uguale a Value2; piuttosto, il Value1 � di meno che il Value2.
|
Dim Value1 As Decimal = 10
Dim Value2 As Decimal = 20
Dim Result1 As Boolean
Dim Result2 As Boolean
Result1 = Value1 = Value2
Result2 = Value1 < Value2
|
|
Logical Operators
|
Le prove relazionali possono essere unite per esaminare le circostanze multiple allo stesso tempo e gli operatori logici E, O, NON e Xor � usato come congiunzioni fra le prove relazionali multiple. Nel seguente esempio, tutte le prove relazionali complesse sono allineare ed avviso nella terza prova relazionale che le parentesi sono usate, appena come nelle espressioni aritmetiche componenti, per controllare l'ordine su cui le prove sono effettuate.
|
Dim Value1 As Decimal = 10
Dim Value2 As Decimal = 20
Dim Value3 As Decimal = -5
Dim Result1 As Boolean
Dim Result2 As Boolean
Dim Result3 As Boolean
Result1 = Value1 < Value2 AND Value1 > Value3
Result2 = Value1 > Value2 OR Value1 > Value3
Result3 = Value1 < Value2 AND (Value1 > Value3 OR Value2 < Value3)
|
|
|
|
Keywords:
relational operators,
logical operators,
logical operator,
logical shift,
relational database,
division operations,
relational databases,
bitwise logical,
logical math,
math operations,
logical arithmetic,
relational design,
logical mathematical,
java logical,
boolean logical,
relational system,
logical database,
logical databases,
logical design
|