LeonelSanchezJr
Programmer
This query brings back all of the records that I need to delete. How can I delete all of these records across 3 tables?
select * from DESK_ALL
join DESK on DESK_ALL.NUMBER = DESK.NUMBER
join NOTES on DESK.iKEY = NOTES.id
join SOLUTIONS on DESK.iNOTESKEY = SOLUTIONS.id
where 'TEST' in (cRECORDEDBY)
select * from DESK_ALL
join DESK on DESK_ALL.NUMBER = DESK.NUMBER
join NOTES on DESK.iKEY = NOTES.id
join SOLUTIONS on DESK.iNOTESKEY = SOLUTIONS.id
where 'TEST' in (cRECORDEDBY)