Represents a qualified (column with table or table with schema) reference.
Set the table and column to the given arguments
[Source]
# File lib/sequel/sql.rb, line 791 791: def initialize(table, column) 792: @table, @column = table, column 793: end
[Validate]