Operators In SQL Operators: SQL generally contains some reserved words that are used to perform operations such as Arithmetical, Comparison and Logical Operations etc. These reserved words are known as Operators. Generally, there are three types of operators in SQL: i. SQL Arithmetic Operators ii. SQL Comparison Operators iii. SQL Logical Operators SQL Arithmetic Operators Let assume variable A holds 20 and variable B holds 60 then: Operators Description Example + Add A+B= will give 80 - Subtract A-B= will give -40 * Multiply A*B= will give 1200 ...