below is my sqlite table. I want to select those column with same ID numbers.
id object
"0" "person"
"1" "person"
"2" "person"
"3" "person"
"4" "chair"
"5" "chair"
"5" "person"
"6" "chair"
"6" "person"
"7" "person"
"8" "chair"
"8" "person"
"9" "chair"
For example, below same row Id has to be queried from the above table.
"5"
"6"
"8"
please help me to prepare a sqlite android query to select those same "id".
thanks in adv Senthil