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