gpt4 book ai didi

sql - Postgresql - 查询问题

转载 作者:行者123 更新时间:2023-11-29 12:34:17 25 4
gpt4 key购买 nike

我有一个格式为 2011-05-13 的变量。我想进行一个查询,将一天添加到该变量并在数据库中搜索这样的日子。

我做了这个查询,但它不起作用。

select phone from employee where date like (select date '2011-05-13' + 1) %

有人能帮忙吗?

最佳答案

您需要一个 INTERVAL:

SELECT phone FROM employee WHERE datefield = (date '2011-05-13' + INTERVAL '1 DAY') ;

编辑:处理日期时不要使用 LIKE,日期没有 LIKE。

关于sql - Postgresql - 查询问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6207231/

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