Skip to content

Custom SQL in Joins

Latest

Choose a tag to compare

@ivank ivank released this 07 Jul 15:06
· 8 commits to master since this release
  • Ability to add custom SQL objects as values to Join's conditions. This allows you to take advantage of escaping columns and still using custom SQL
// JOIN table ON column1 IS NULL
$select->join('table', array('column1' => new SQL('IS NULL'));
  • Fix Set Multiple column escaping bug