gpt4 book ai didi

postgresql - 使用 Postgres,我想要查询中字符串中特定格式的时间戳

转载 作者:行者123 更新时间:2023-11-29 12:18:52 26 4
gpt4 key购买 nike

这是我想要的查询

SELECT * FROM information_schema.tables WHERE table_name = 'shop_ean_2016_06_12';

但查询中的“2016_06_12”应该是昨天。我知道“NOW() - '1 day'::INTERVAL”,但我想在表名比较中使用它。

感谢您以任何方式做到这一点。

最佳答案

select * from information_schema.tables where table_name ='shop_ean_' || to_char(now() - interval '1 day','YYYY_MM_DD');

关于postgresql - 使用 Postgres,我想要查询中字符串中特定格式的时间戳,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37794240/

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