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