I have two tables, appointments and backupappointme nts.
I also have a
function getAppointments (theDate DATE) RETURN RECORDSET
(which has not been written yet).
What I want the function to do is take a date, and return a table of
appointments on that date. My problem has two parts:
1) How do I append the table backupappointme nts to the table
appointments so that I can do a simple SELECT on the date of this new
table?
2) How do I return the filtered table?
Any help would be greatly appriciated
Jagdip Singh Ajimal
I also have a
function getAppointments (theDate DATE) RETURN RECORDSET
(which has not been written yet).
What I want the function to do is take a date, and return a table of
appointments on that date. My problem has two parts:
1) How do I append the table backupappointme nts to the table
appointments so that I can do a simple SELECT on the date of this new
table?
2) How do I return the filtered table?
Any help would be greatly appriciated
Jagdip Singh Ajimal
Comment