The SELECT clause selects columns from PROCLIB.PAYLIST. The asterisk (*) selects all columns. The FROM clause specifies PROCLIB.PAYLIST as the table to select from.
title 'PROCLIB.PAYLIST Table';
select *
   from proclib.paylist;