gpt4 book ai didi

sql - 查询小于特定时间的时间

转载 作者:搜寻专家 更新时间:2023-10-30 21:55:44 28 4
gpt4 key购买 nike

我需要查询小于10秒的时间。

我有这张表:

CREATE TABLE Results(
id_result SERIAL PRIMARY KEY,
score REAL,
temps TIME );

谢谢

最佳答案

您只需使用 where 子句:

select r.*
from results r
where r.temps < '00:00:10'::time

关于sql - 查询小于特定时间的时间,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53802986/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com