I need to get the values of children column corresponding to key column as in the image. What would be the select statement for it in android sqlite.
Thanks

I am using following code for it:
public Cursor fetchChildren(String KEY_){
Cursor c = db.rawQuery("SELECT children FROM " + DATABASE_TABLE_NAVIGATION
+ " WHERE key =" + KEY_+ "", null);
return c;
But it is giving me exception:
android.database.sqlite.SQLiteException: no such column: home: , while compiling: SELECT children FROM navigation WHERE key =home
}