Whether it is for obtaining or preparing an output of employees that are earning in excess of ten thousand, a select query with where clause would satisfy. The Where clause is going to will select only those rows where the salary is going to be more than ten thousand.
Here is the code to implement that:
SELECT *
FROM employees
WHERE salary >= 10000;