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