getContentResolver().query(RawContacts.CONTENT_URI, new String[]{RawContacts._ID, RawContacts.DELETED, RawContacts.TIMES_CONTACTED}, null, null, null);

RawContacts Table 에서 

ID, DELETE, TIMES_CONTACTED 값을 가져오는데

null,null,null <- 이부분에서 조건을 설정 해줘야 덴다는 것을 알겠는데

WHERE 문을 기존에 sql 문으로 하면 안되던데, 조건문을 어떤식으로 사용해야 하나요?