can anyone help me to do a recursive query on my sqlite database?
The command START WITH CONNECT BY might be helpful, but it is not working with me. Any ideas?
can anyone help me to do a recursive query on my sqlite database? The
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
This is Oracle’s syntax. A bit of Googling reveals that SQLite doesn’t support recursive queries; neither using Oracle
connect bynor ANSI recursive CTEs using thewithclause. As such, you would have to delegate the recursion logic to your application.