* ltrim : is used to delete the white space from left side of the string.* rtrim : is used to delete the white space from right side of the string.select rtrim(' kapil ')will retun ' kapil'select ltrim(' kapil ')will return 'kapil '