Method: DLQuery#select

Defined in:
lib/datalanche/query.rb

#select(columns) ⇒ Object

SELECT



375
376
377
378
379
380
381
382
# File 'lib/datalanche/query.rb', line 375

def select(columns)
    if columns == '*'
        raise Exception('please use select_all() instead of select("*")')
    end
    
    @params['select'] = columns
    return self # method chaining
end