PostgreSQLにて、以下のようなデータから
日付が今日のデータを取得したいと思い
下のSQLを実行したのですが上手くいかず困っています。
part_code_full | delivery_date | delivery_number |
---|---|---|
aa00000-00 | 2019-09-18 | 10 |
bb00000-00 | 2019-09-22 | 20 |
cc00000-00 | 2019-09-23 | 0 |
dd00000-00 | 2019-09-25 | 30 |
ee00000-00 | 2019-09-27 | 10 |
SQL
1SELECT * FROM product_delivery001 WHERE delivery_date > DATE_SUB(NOW(), INTERVAL '1 DAY');
以下が実行後のエラーです。
エラー内容
No function matches the given name and argument types. You might need to add explicit type casts.
回答2件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2019/09/25 08:14