How to call the function and Procedure in trigger?
Answer Posted / pradeep aryan
hi this is Sql server Statement:
Create table findSalary(salay int)
-- create procedure
Create proc stp_testdata
as
begin
select * from findsalary
end
-- Create function
create function Function4()
returns varchar
as
begin
return 'test data'
end
-- insert command
insert into findsalary values (89)
this is working fine
| Is This Answer Correct ? | 0 Yes | 3 No |
Post New Answer View All Answers
how to create a new view in mysql? : Sql dba
What are different types of keys?
How to raise user-defined exception with custom sqlerrm ?
Can I join the same table twice?
What does a pl/sql package consist of?
What are character functions in sql?
What is left join example?
how is myisam table stored? : Sql dba
Does pl sql work in mysql?
Is sql between inclusive?
What do you mean by query optimization?
What is cursor in pl sql with examples?
Which one is better subquery or joins?
What is the purpose of cursors in pl/sql?
What is write ahead logging in sql server?