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.
MySQLのバイナリに相当するステートメントがOracleにありますか?
例:
Select * from table1 where BINARY column1 = BINARY column2;
大文字と小文字を区別して完全に一致させます。両方の列をUPPERまたはLOWERに変換する以外に、別のステートメントはありますか?
SELECT * FROM table1 WHERE NLSSORT(column1, 'NLS_SORT = Latin_CS') = NLSSORT(column2, 'NLS_SORT = Latin_CS')
どこかで答えを見つけました。