SELECTDISTINCT salary
FROM employees
ORDERBY salary ASCLIMIT3;
This query selects the three lowest unique salary values from the "employees" table by sorting the distinct results in ascending order and limiting the output to the first three rows.
PromptDB can make mistakes. Please double-check responses.