io.github.wycst.wast.jdbc.executer.InSubQueryCondition Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of wast Show documentation
Show all versions of wast Show documentation
Wast is a high-performance Java toolset library package that includes JSON, YAML, CSV, HttpClient, JDBC and EL engines
The newest version!
package io.github.wycst.wast.jdbc.executer;
public class InSubQueryCondition extends SubQueryCondition {
private final String field;
InSubQueryCondition(String field, SubOqlQuery subOqlQuery) {
super(subOqlQuery);
this.field = field;
}
@Override
public String getField() {
return field;
}
@Override
public String getSymbol() {
return "IN";
}
}