What is <= in SQL?

<= is an operator to check whether the left hand operator is less than or equal to the right hand operator. This generally we use for filter values in where clause.

In other ways it would fetch the result set of the column which is less than or equal to the specified one.

Ex: select sal(col) from the employee (tab) where sal<=1000;