Method: MysqlFramework::SqlQuery#and

Defined in:
lib/mysql_framework/sql_query.rb

#andObject

This method is called to add an ‘and` keyword to a query to provide additional where clauses.



142
143
144
145
146
# File 'lib/mysql_framework/sql_query.rb', line 142

def and
  @sql += 'AND'

  self
end