作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
用不同数量的 WHERE 条件构造 sql 的最佳方法是什么?
我的解决方案看起来很难看:
my ($where, @values);
if ($phone_number)
{
$where = 'AND pnone_number=?';
@values = ($from, $till, $phone_number);
}
else
{
$where = '';
@values = ($from, $till);
}
my $sql = 'SELECT * FROM calls WHERE time between ? AND ? '.$where.' ORDER BY time';
my $res = $dbh->selectall_arrayref($sql, undef, @values) or warn 'error';
最佳答案
怎么样:
my $where = '';
my @values = ( $from, $till );
if ( $phone_number ) {
$where = 'AND phone_number=?';
push @values, $phone_number;
}
else
的需要条款。
use SQL::Abstract;
...
my ( $sql, @values ) = SQL::Abstract->new->select(
'calls', # table
'*', # columns
{ time => { '<=' => $till, '>' => $from }, # where clause
$phone_number ? ( phone_number => $phone_number ) : ( ),
},
'time' # order clause
);
关于perl - 更优雅的方式来构造 SQL 添加 WHERE 和使用占位符,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16645004/
我是一名优秀的程序员,十分优秀!