我正在学习这个很棒的库,但是虽然简单的查询有效,但我很困惑如何编写库常见问题解答中没有的东西。
例如,
create table if not exists ticks
(id bigserial not null constraint ticks_pkey primary key,
timestamp timestamp not null
);
可以写类似的东西
select coalesce(max(id), 0) from ticks where timestamp::date = ?
实际上,我在这里有两个问题
column.max()没有任何合适的修饰符,例如function()不接受任何参数。可能,我可以在获取行后在代码中模拟它。
我不知道如何在where进行强制转换或编写任意where条件。