select * from sites where upper(url) = lower('HTTP://www.mysite.com')
can anyone tell me why does the above sql statement return results when it should return no results???
i was trying this where clause : where upper(url)=upper('$url'), but it doenst seem to work right...
what am i doing wrong and how can i do the latter where clause ?
thanks