All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.github.wycst.wast.jdbc.executer.InSubQueryCondition Maven / Gradle / Ivy

Go to download

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";
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy