class Sequel::SQL::ColumnAll

  1. lib/sequel/sql.rb
Superclass: Expression

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

Methods

Public Class

  1. new

Public Instance

  1. table

Attributes

table [R]

The table containing the columns being selected

Public Class methods

new(table)

Create an object with the given table

[show source]
     # File lib/sequel/sql.rb
1256 def initialize(table)
1257   @table = table
1258   freeze
1259 end