Quote:
Originally posted by MaxJam
great,
that works
but now, how do you tell the difference between
"Dpi"
and
"dpi"
and
"dPI"
???
|
--for Dpi
select * from table where column = initcap('dpi')
--for dpi
select * from table where column = lower('dpi')
--for dPI
select * from table where column != lower('dpi') and column != upper('dpi') and column != initcap('dpi') and lower(column) = lover('dpi')
--for DPI
select * from table where column = upper('dpi')
etc
etc