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