petersJazz
Programmer
In Oracle its not possible to search without case, for example
select ... where col = 'aab'
will not find col AAB in DB.
In SQL server its possible to set an global flag that text should be searched without case.
What does the standards say?
select ... where col = 'aab'
will not find col AAB in DB.
In SQL server its possible to set an global flag that text should be searched without case.
What does the standards say?