Good day. in the database there is a string with three fields: name; number; my; there is a line: Vasya; 34358; by: how to make a selection to pull out the name = Vasya, number = 34358; my = by ???

    1 answer 1

    Cursor c = db.query("tablename", new String[] { "name", "number", "my" } , "name = ? AND number = ? AND my = ?" , new String[]{"вася", "34358", "by"}, null, null, null);