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

db.sql.api.impl.cmd.executor.WithQuery Maven / Gradle / Ivy

There is a newer version: 1.7.6-RC2
Show newest version
package db.sql.api.impl.cmd.executor;

import db.sql.api.impl.cmd.CmdFactory;
import db.sql.api.impl.cmd.basic.DatasetField;

/**
 * 子查询
 */
public class WithQuery extends AbstractWithQuery implements db.sql.api.cmd.basic.IDataset {

    public WithQuery(String alias) {
        super(new CmdFactory("wt"));
        this.alias = alias;
    }

    @Override
    public WithQuery as(String alias) {
        throw new RuntimeException("not support");
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy