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.
Oracle Sqlを使用して10をTENにする方法は? 例: 20 を 20 として、1000 を 1000 として
select your_col, (to_char(to_date(your_cold,'j'), 'jsp')) from your_table;
トリックを行う必要があります。ただし、数値のサイズには制限がありますが、ここで提供されている回避策はもう少し複雑です-アイデアは、数値を3桁のグループで分割し、上記のトリックでそれらを変換し、適切な「数量詞」を追加することです(千、百万、十億など)。