Need help in deleting Records

Newbie Member
8Aug2012,12:43   #1
sphamasango's Avatar
Hi.
Can any one help with a solution.
I have three tables in a database:"tableCustomer","tableOrders","tableOrder Prints".now I need to delete all related records in table “order” before deleting the customer. Given that the table “OrderPrints” is also related to the table “Order”, I must delete all related records first! Please help
Mentor
14Aug2012,12:38   #2
xpi0t0s's Avatar
How can we help without more detail? You're correct - to maintain database integrity you must delete all related records first. How to determine what records are related is the question here. You can use SELECT...WHERE to experiment, and when you get the result you like you can do DELETE...WHERE using the same WHERE clause.