Is is it possible to create a "chr" field in a table which is case insensitive when performing a select statement, e.g:
select descr from temp where desc like "%jam%"
Would return all instances of jam regardless of case e.g:
jAm
Jam
JAM
etc.....
I am not looking to change the select statement, perhaps there is a property with the field itself as there is with other databases.
Thanks
select descr from temp where desc like "%jam%"
Would return all instances of jam regardless of case e.g:
jAm
Jam
JAM
etc.....
I am not looking to change the select statement, perhaps there is a property with the field itself as there is with other databases.
Thanks