Answers for "oracle can you use upper in a in case"

SQL
4

upper and lower in oracle sql

SELECT upper('Hello World') FROM dual;					-- HELLO WORLD
SELECT lower('Hello World') FROM dual;					-- hello world
SELECT inticap('hello world') FROM DUAL; 				-- Hello World
Posted by: Guest on May-06-2021
2

oracle sql uppercase in where clause

SELECT * FROM my_table WHERE upper(MY_COLUMN) = upper('My_String');
Posted by: Guest on January-31-2021

Code answers related to "oracle can you use upper in a in case"

Code answers related to "SQL"

Browse Popular Code Answers by Language