SELECT micros.chk_dtl.chk_num,
micros.chk_dtl.chk_prntd_cnt,
micros.emp_def.last_name,
micros.emp_def.first_name
FROM micros.chk_dtl JOIN micros.emp_def ON micros.chk_dtl.emp_seq = micros.emp_def.emp_seq
This will give you the Check #, # of times printed, and the employee first and last name.