Tag: databases
Questions Related to databases
Output of the below two queries will be same.. 1.select nvl('abc','a') from dual; 2.select nvl('abc',0) from dual;
Want to search character 'a' from last in the string 'Hi Partha Sarathi Ojha'. So what would be the query...
select replace('abcda','ab','ef') from dual ; The o/p would be..
The o/p of the below two queries will be same ? 1.select translate('abcd','a','d') from dual; 2.select replace('abcd','a','d') from dual;