Class DerivedColumn<T>

java.lang.Object
org.mybatis.dynamic.sql.DerivedColumn<T>
Type Parameters:
T - The Java type that corresponds to this column - not used except for compiler type checking for conditions
All Implemented Interfaces:
BasicColumn, BindableColumn<T>

public class DerivedColumn<T> extends Object implements BindableColumn<T>
A derived column is a column that is not directly related to a table. This is primarily used for supporting sub-queries. The main difference in this class and SqlColumn is that this class does not have a related SqlTable and therefore ignores any table qualifier set in a query. If a table qualifier is required it can be set directly in the builder for this class.