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.
私は PL/SQL 言語が初めてです。PL/SQL:UPPERとに 2 つの関数があることがわかりましたNLS_UPPER。どちらも同じことをします。これらの機能の違いを知りたいです。ありがとう
PL/SQL
UPPER
NLS_UPPER
NLS_UPPERロケール固有の規則について知っている
このクエリ:
select nls_upper('ß', 'NLS_SORT = XGerman') as upper1, upper('ß') as upper2 from dual;
以下を返します。
アッパー1 | アッパー2 -------+------- SS | SS | ß
違いを見ます?