How to delete data from multiple tables in sqlite?
- by diana
I am using sqlite database to store data. I have three tables: Invoice, InvRow, Invdetails.
Relationsip between the tables are:
Invoice.Id = InvRow.InvId
InvRow.Id = Invdetails.RowId
I need to delete related entries from three tables using a single query. How can I do that?
Any help?