oracle last character of string

Solutions on MaxInterview for oracle last character of string by the best coders in the world

we are a community of more than 2 million smartest coders
registration for
employee referral programs
are now open
get referred to google, amazon, flipkart and more
register now
  
pinned-register now
showing results for - "oracle last character of string"
Jonathan
19 Sep 2020
1SELECT substr('My name is Bond', -1) FROM DUAL;		-- d
2SELECT substr('My name is Bond', -4) FROM DUAL;		-- Bond