Class Sequel::SQL::ColumnAll
In: lib/sequel/sql.rb
Parent: Expression

Represents all columns in a given table, table.* in SQL

Methods

new  

Attributes

table  [R]  The table containing the columns being selected

Public Class methods

Create an object with the given table

[Source]

      # File lib/sequel/sql.rb, line 1116
1116:       def initialize(table)
1117:         @table = table
1118:       end

[Validate]