Method: SQL::Maker::Select#distinct

Defined in:
lib/sql/maker/select.rb

#distinct(distinct = nil) ⇒ Object



36
37
38
39
40
41
42
43
# File 'lib/sql/maker/select.rb', line 36

def distinct(distinct = nil)
  if distinct
    @distinct = distinct
    self # method chain
  else
    @distinct
  end
end