counting the no.of characters occurs in a string by using
pl/sql function
Answer / revathy
create or replace function f1(
iip in varchar2,iip2 in char)
Return number
is
tot number;
Begin
select (length(iip)-length(replace(iip,iip2))) into tot
from dual;
return tot;
end;
Is This Answer Correct ? | 14 Yes | 1 No |
explain advantages of innodb over myisam. : Sql dba
How can the performance of a trigger be improved?
Can we write dml inside a function in sql server?
What does an inner join do?
What is nosql example?
Its possible to add more than one primary key for the table
what is the difference between implicit conversions and explicit conversions?
What are sql injection vulnerabilities?
What are the differences between Database Trigger and Integrity constraints ?
Can you have a foreign key without a primary key?
Can we join two tables without common column?
What does (*) mean in sql?