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.
重複の可能性: 番号が 1 桁の場合、番号の前にスペースを追加するにはどうすればよいですか?
私は次のことを試しました:
REGEXP_REPLACE(to_char(myArray(i).myValue), '\d{1}', ' ' || to_char(myArrzy(i).myValue))
どうですか:
lpad(myArray(i).myValue,2)
数値は暗黙的に変換され、''がデフォルトですlpad。SQLフィドルはこちら
lpad
lpad (to_char(myArray(i).myValue), 2, ' ')
http://www.adp-gmbh.ch/ora/sql/rpad.html