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.
簡単な質問: 数字を含む行をその数字の名前で選択する方法はありますか? つまり、クエリに「seven」と入力すると、「7」を含む行が取得されます。序数も行うためにこれが必要です。「second」と入力し、「2」を含む行を取得します。
私はOracle Textを見てきましたが、それを行うものは何も見つかりません。
ありがとう!
-- llappall
select to_char(to_date(1,'J'),'Jsp') from dual;
HTH。
アレッサンドロ
PS: @Mike:select to_char(to_date(483922,'J'),'Jsp') from dual同様に動作します;)
select to_char(to_date(483922,'J'),'Jsp') from dual
PPS: 言及するのを忘れていました:select to_char(to_date(1,'J'),'Jspth') from dual;
select to_char(to_date(1,'J'),'Jspth') from dual;