SQL Operators are symbols used to perform actions such as arithmetic, comparisons, or logical decisions within queries.
They help evaluate conditions, manipulate values, and filter data based on specific rules.
1. Arithmetic Operators
Perform basic mathematical operations on numeric data such as addition (+), subtraction (-), multiplication (*), division (/), and modulus (%).

2. Comparison Operators
Used to compare values and return TRUE or FALSE. Commonly used in WHERE clauses. Examples: =, !=, >, <, >=, <=.

3. Logical Operators
Combine multiple conditions in a SQL query using logic rules such as AND, OR, and NOT.
