public class Select extends QueryPlan { private String columnName; private Op op; private int value; public Table execute() throws Exception { Table result = table == null ? qPlan.execute() : table; return result.select(columnName, op, value); }