show/hide this revision's text 2 edited tags; edited title

How can I select if a column is rows that are null or not based on a using bound variablequeries in Perl's DBI?

show/hide this revision's text 1

select if a column is null or not based on a bound variable

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

 if ($search_undeleted_only)
 {
     $sqlString .= " AND deleted_on IS NULL";
 }

but I want to use bound queries. Would this be the best way?

 my $stmt = $dbh->prepare(...
     "AND (? = 0 OR deleted_on IS NULL) ");
 $stmt->execute($search_undeleted_only);