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