Represents a qualified identifier (column with table or table with schema).
Set the table and column to the given arguments
[Source]
# File lib/sequel/sql.rb, line 1646 1646: def initialize(table, column) 1647: @table = convert_identifier(table) 1648: @column = convert_identifier(column) 1649: freeze 1650: end
Create a Function using this identifier as the functions name, with the given args.
# File lib/sequel/sql.rb, line 1654 1654: def function(*args) 1655: Function.new(self, *args) 1656: end
[Validate]