SQL-ArithmeticOperators-And-OR-Page16

                                                                                  


πŸ‘‰Arithmetic Operators


Below are the arithmetic operators of SQL database:

+ Addition, - Subtraction, /Division, 

* Multiplication, ** Exponentiation, 

() Enclosed Operation


πŸ‘‰AND Operator

The Oracle engine will process all rows in a table and display the result only when all of the conditions specified using the AND operator are satisfied.


πŸ‘‰OR Operator

The database engine will process all rows in a table and display the result only when any of the conditions specified using the OR operator is satisfied.


Comments

Popular posts from this blog

SQL-ForeignKeyConstraint-Page6

Javascript-OOPs(Part3)-Inheritance - (9)

OraclePLSQL-Page3