oracle lower in where clause

Solutions on MaxInterview for oracle lower in where clause by the best coders in the world

showing results for - "oracle lower in where clause"
Sofie
22 Oct 2017
1SELECT * FROM my_table WHERE upper(MY_COLUMN) = upper('My_String');
Alonso
01 May 2018
1SELECT * FROM my_table WHERE lower(MY_COLUMN) = lower('My_String');