我正在尝试获取过去 6 个月的数据。
这是我用过的:
WHERE d_date > DATEADD(m, -6, current_timestamp)
我收到了这个错误。
ERROR: CLI prepare error: SQL0206N "M" is not valid in the context where it is used
也试过
WHERE d_date > current date -180
并得到这个错误:
ERROR: CLI prepare error: SQL0171N The data type, length or value of the argument for the parameter in
position "2" of routine "-" is incorrect. Parameter name: "". SQLSTATE=42815
请指教。