SELECT Table.date FROM Table WHERE date > current_date - 10;
这在PostgreSQL上有效吗?
是的,这在PostgreSQL中确实有效(假设“ date ”列为datatype date)为什么不尝试一下呢?
date
标准的ANSI SQL格式为:
SELECT Table.date FROM Table WHERE date > current_date - interval '10' day;
我更喜欢这种格式,因为它使内容更易于阅读(但与相同current_date - 10)。
current_date - 10