Represents all columns in a given table, table.* in SQL
Create an object with the given table
[Source]
# File lib/sequel/sql.rb, line 1028 1028: def initialize(table) 1029: @table = table 1030: end
[Validate]