如何在 dbix:class 中实现 lower() (postgresql)
How to realize lower() (postresql) in dbix:class
我需要 postgresql 查询:
select * from document where lower(app_period) = '2019-08-01 00:00:00+03';
它在 dbix::class 中的外观如何?
DBIx::Class::Manual::Cookbook 包含一个示例。
在 DBIx::Class 中看起来像:
$rs->search(
\[ 'lower(app_period) = ?', $start ]
);
有一些参数:
$rs->search({ -and => [
agreement_id => $id,
\[ 'lower(app_period) = ?', $start ]
]});
我需要 postgresql 查询:
select * from document where lower(app_period) = '2019-08-01 00:00:00+03';
它在 dbix::class 中的外观如何?
DBIx::Class::Manual::Cookbook 包含一个示例。
在 DBIx::Class 中看起来像:
$rs->search(
\[ 'lower(app_period) = ?', $start ]
);
有一些参数:
$rs->search({ -and => [
agreement_id => $id,
\[ 'lower(app_period) = ?', $start ]
]});