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

db.sql.api.cmd.struct.query.ISelect Maven / Gradle / Ivy

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

import db.sql.api.Cmd;

import java.util.List;

public interface ISelect extends Cmd {

    SELF distinct();

    boolean isDistinct();

    SELF select(Cmd column);

    SELF select(Cmd... columns);

    SELF select(List columns);

    List getSelectField();

    SELF selectIgnore(Cmd column);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy