String Functions
C programming language provides a rich set of string handling functions to perform different task on string easily. They are available inside string.h header file so we need to include string.h intoRead More…
C programming language provides a rich set of string handling functions to perform different task on string easily. They are available inside string.h header file so we need to include string.h intoRead More…
Upper(): It returns specified string into the upper case. Syntax: Upper(String or Filed); Example: SELECT upper(‘Welcome’) FROM DUAL; // with constant String SELECT upper(firstName) FROM EMP ; // where firstName is aRead More…