RE: What is difference between SUBSTR and INSTR?...
hisubstr i s used to select pirticular word frm stringsuppose select substr('nagaraju' 1 3) from dual ;returns nag means 1 is start position of word and 3 is end ok instr returns only position of first occureence of a specified characterselect instr('nagaraju' 'a') from dual ;returns 2 only ;;ok i hope usatisfied with my answers
RE: What is difference between SUBSTR and INSTR?...
SUBSTR: it extracts the string of determined length.whereras (i.e. it returns character for specified position)INSTR:it returns the number of named string.(i.e. it returns number )