de.jaggl.sqlbuilder.functions.Avg Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sqlbuilder-core Show documentation
Show all versions of sqlbuilder-core Show documentation
A Java-Library to build SQL-Statements
package de.jaggl.sqlbuilder.functions;
import de.jaggl.sqlbuilder.columns.Column;
import lombok.ToString;
/**
* @author Martin Schumacher
*
* @since 2.0.0
*/
@ToString(callSuper = true)
public class Avg extends NumberColumnFunction
{
public Avg(Column column)
{
super(column, "AVG");
}
public Avg(Column column, String alias)
{
super(column, "AVG", alias);
}
public Avg as(String alias)
{
return new Avg(column, alias);
}
}