Hello All, There are 3 tables interconnected with each other by foreign keys. On deleting particular item from one table should delete all items from other tables that was pointing to it using foreign key (Just like ON_DELETE_CASCADE - SQLite does not support ON_DELETE_CASCADE, so I want to write query to do so)
Let me know is there any other solution to do so. Regards, Ajay Sonawane

