How can I select rows that are null using bound queries in Perl's DBI? - Stack Overflow most recent 30 from stackoverflow.com2009-12-01T21:20:59Zhttp://stackoverflow.com/feeds/question/433632http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/433632/how-can-i-select-rows-that-are-null-using-bound-queries-in-perls-dbi4How can I select rows that are null using bound queries in Perl's DBI?Paul Tomblin2009-01-11T20:33:29Z2009-01-12T19:13:41Z
<p>I want to be able to pass something into an SQL query to determine if I want to select only the ones where a certain column is null. If I was just building a query string instead of using bound variables, I'd do something like</p>
<pre><code> if ($search_undeleted_only)
{
$sqlString .= " AND deleted_on IS NULL";
}
</code></pre>
<p>but I want to use bound queries. Would this be the best way?</p>
<pre><code> my $stmt = $dbh->prepare(...
"AND (? = 0 OR deleted_on IS NULL) ");
$stmt->execute($search_undeleted_only);
</code></pre>
http://stackoverflow.com/questions/433632/how-can-i-select-rows-that-are-null-using-bound-queries-in-perls-dbi/433685#4336853Answer by SquareCog for How can I select rows that are null using bound queries in Perl's DBI?SquareCog2009-01-11T21:00:10Z2009-01-12T01:12:18Z<p>Yes; a related trick is if you have X potential filters, some of them optional, is to have the template say <code>" AND ( ?=-1 OR some_field = ? ) "</code>, and create a special function that wraps the execute call and binds all the second ?s. (in this case, -1 is a special value meaning 'ignore this filter').</p>
<p>Update from Paul Tomblin: I edited the answer to include a suggestion from the comments.</p>
http://stackoverflow.com/questions/433632/how-can-i-select-rows-that-are-null-using-bound-queries-in-perls-dbi/433686#4336861Answer by Michael Haren for How can I select rows that are null using bound queries in Perl's DBI?Michael Haren2009-01-11T21:00:31Z2009-01-11T21:00:31Z<p>I think that's a reasonable approach. It follows the normal filter pattern nicely and should give good performance.</p>
http://stackoverflow.com/questions/433632/how-can-i-select-rows-that-are-null-using-bound-queries-in-perls-dbi/433703#4337032Answer by Bill Karwin for How can I select rows that are null using bound queries in Perl's DBI?Bill Karwin2009-01-11T21:07:26Z2009-01-11T21:07:26Z<p>So you're relying on short-circuiting semantics of boolean expressions to invoke your <code>IS NULL</code> condition? That seems to work.</p>
<p>One interesting point is that a constant expression like <code>1 = 0</code> that did not have parameters should be factored out by the query optimizer. In this case, since the optimizer doesn't know if the expression is a constant <code>true</code> or <code>false</code> until execute time, that means it can't factor it out. It must evaluate the expression for every row.</p>
<p>So one can assume this add a minor cost to the query, relative to what it would cost if you had used a non-parameterized constant expression.</p>
<p>Then combining with <code>OR</code> with the <code>IS NULL</code> expression may also have implications for the optimizer. It might decide it can't benefit from an index on <code>deleted_on</code>, whereas in a simpler expression it would have. This depends on the RDBMS implementation you're using, and the distribution of values in your database.</p>