There is no need to explicitly create instances of this class. Instead use {@link DBColumnExpr#as(String) }
285286287288289290291
* @param alias the alias name * @return the new DBAliasExpr object */ public DBColumnExpr as(String alias) { return new DBAliasExpr(this, alias); }
296297298299300301302
* @param column the column whose name serves as an alias for the current expression * @return the new DBAliasExpr object */ public DBColumnExpr as(DBColumn column) { return new DBAliasExpr(this, column.getName()); }
287288289290291292293
298299300301302303304