eg. alter session set nls_sort=ESTONIAN
add a "_CI" to get case insensitive or "_AI" to get both case and accent insensitive sorting
or use the NLSSORT function
select name from empliyees order by NLSSSORT(name,'NLS_SORT=ESTONIAN_AI');
to perform case insensitive comparisons set the NLS_COMP parameter to 'LINGUISTIC'. This will make the WHERE clause conditions use the rules set by the NLS_SORT parameter
Like this:
alter session set NLS_COMP=LINGUISTIC;
alter session set NLS_SORT=ESTONIAN_CI;
select name from employees where name like 'SomEnAme';
To achive same results without setting the NLS_SORT, NLSSORT function could be used like this:
select * from scott.l where nlssort(name,'nls_sort=BINARY_AI') like nlssort('koger', 'nls_sort=BINARY_AI');
No comments:
Post a Comment