How to delete data from multiple tables in sqlite?

Posted by diana on Stack Overflow See other posts from Stack Overflow or by diana
Published on 2009-11-14T10:15:01Z Indexed on 2010/06/03 16:24 UTC
Read the original article Hit count: 495

Filed under:
|

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?

© Stack Overflow or respective owner

Related posts about sqlite

Related posts about sqlite3