If this is a query that you use repeatedly, a shorthand method of reusing this query without retyping the entire SELECT command each time is to create a view:
The view name, employee_pay, can now be used like an ordinary table name to perform the query:
Making liberal use of views is a key aspect of good SQL database design. Views provide a consistent interface that encapsulate details of the structure of your tables that might change as your application evolves.
You can use views in almost any place you can use a real table. Building views on other views is common.