Method: Sequel::SQL::JoinClause#table_alias

Defined in:
lib/sequel/sql.rb

#table_aliasObject

The table alias to use for the JOIN , or nil if the JOIN does not alias the table.



1565
1566
1567
1568
1569
# File 'lib/sequel/sql.rb', line 1565

def table_alias
  if @table_expr.is_a?(AliasedExpression)
    @table_expr.alias
  end
end