programming-examples/sql/BooleanRelationalOperators/Write a SQL statement to display salesman_id, name, city and commission who gets the commission within the range more than 0.10% and less than 0.12%.sql
2019-11-18 14:05:53 +01:00

6 lines
288 B
SQL

/*Write a SQL statement to display salesman_id, name, city and commission who gets the
commission within the range more than 0.10% and less than 0.12%.*/
SELECT salesman_id,name,city,commission
FROM salesman
WHERE (commission > 0.10
AND commission< 0.12);