Suppose I have an sqlite table like this:
Id|B|C|D
And I have a list containing some values of Id
. Maybe [1,3,45,67](something like that.)
I want to get the rows with Id's in the list, whose B
values are greater than 5 and eventually order it by C
.
I think the title I put for this is horrible, if you can think of a better one please edit it.