I want to select some records from a table depending on multiple limitations like i want to get records which lies in a range < OR > how can i write such query in SQLite.....?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
I believe that the SQL dialect understood by SQLite is fairly standard so you can write a query such as this made-up example:
|
|||
|
|
|
If you want to query a range you can use the
As teabot notes, SQLite uses a pretty standard version of SQL and all the usual clauses are valid. |
|||
|
|