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