Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
iif(schedule.type like
one table is called sched
SELECT DISTINCT
Staff.Employee
, Staff.Rate1
. Staff.Rate2
, Sched.Type
, iif(sched.type like '%P%', staff.rate2, staff.rate1) as exp2
FROM (Sched RIGHT OUTER JOIN
Staff ON Sched.Employee = Staff.Employee)
SELECT DISTINCT
Staff.Employee
, Staff.Rate1
, Staff.Rate2
, Sched.Type
, iif(sched.type like "*P*", staff.rate2, staff.rate1) as exp2
FROM (Sched RIGHT OUTER JOIN
Staff ON Sched.Employee = Staff.Employee)