SELECT is used to retrieve rows of data from a table. You can specify which columns will be retrieved:
SELECT
SELECT Name, Position FROM Employees;
Or just use * to get all columns:
SELECT * FROM Employees;