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