Rahul Bagchi
Results
1
comments of
Rahul Bagchi
``` detailsQueryBuilder .where() .notIn("id", detailsQueryBuilder.selectColumns("log_id")); ``` the immediate change you can do: ``` detailsQueryBuilder .where() .notIn("id", detailsDao.queryBuilder().selectColumns("log_id")); // this will return all the log_id in the details table ``` but...