Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
問題が発生しました。システム日付をテキストで表示したいのですが、現在、Where ステートメントは次のようになっています。
where optxt_text like '%Mahnstufe 2 29.06.2016%' and (reverse(rpad(reverse(optxt_belnr),3))) in ('KAG','KRE','KSR') ;
「29.06.2016」をsysdateに置き換える方法はありますか?
私の悪い英語でごめんなさい。
これでうまくいくはずです:
where optxt_text like '%Mahnstufe 2 '+CONVERT(nchar, getdate(), 104)+'%'
それを私が直した
解決策は次のとおりです。
LIKE '%... '||to_char(sysdate,'DD.MM.YYYY')||'%'