Is it possible with Kohana v3 Query Builder to use the IS NOT NULL operator?

The where($column, $op, $value) method requires all three parameters and even if I specify

->where('col', 'IS NOT NULL', '')

it builds and invalid query eg.

SELECT * FROM table WHERE col IS NOT NULL '';
link|improve this question

3  
v3 is just fine. and you were so close! All you had to do, was move the NULL to the value argument: ->where('col', 'IS NOT', NULL) – SpadXIII Sep 27 '10 at 8:46
Now that v3 has better docs and I've had a chance to get used to it-- I'm enjoying it thoroughly. – FelixHCat Apr 3 '11 at 10:25
feedback

4 Answers

up vote 10 down vote accepted

The operator is not escaped:

->where('col', 'IS NOT', NULL)

No need to use DB::expr, Kohana already supports what you want.

link|improve this answer
feedback

This works with the ORM module and is a little less typing.

->where('col', '!=', NULL);
link|improve this answer
Does this actually work? What is the produced query? – ypercube Aug 13 '11 at 19:08
feedback

Not sure (it's 3 AM right now) but ->where('col', '', DB::expr('IS NOT NULL')) might works.

link|improve this answer
GENIUS. You sir, are a saint. – FelixHCat Sep 26 '10 at 1:19
I think it's better to put the 'IS NOT' as the second argument and the value just being NULL. Just like Gerry answered. Using a DB::expr is nice, but adds unnecessary extra overhead (in this case) – SpadXIII Sep 27 '10 at 8:45
2  
Yeah the best solution is ->where('col', 'IS NOT', NULL) – FelixHCat Nov 10 '10 at 19:28
feedback

This should work:

->where('col', '=', NULL);
link|improve this answer
u missed it this time :) – Kemo Jan 24 '11 at 10:05
That's checking of the value is null, OP wanted is not null. – Gerry Feb 6 '11 at 17:40
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.