If you have a bunch of payroll dates, and you're trying to pull information on certain days (typically twice a month)
We want the run_date to pull the next payroll date that is set up
so in words, it would be something like
select payroll_date
from payroll_table
where payroll_date > run_date < the next payroll date
this make any sense?
We want the run_date to pull the next payroll date that is set up
so in words, it would be something like
select payroll_date
from payroll_table
where payroll_date > run_date < the next payroll date
this make any sense?