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 much does sql certification cost?
What is sql mysql pl sql oracle?
What is update query?
What is pl sql record in oracle?
how do you tune the slow running queries in oracle db , explain the methodology
Explain the steps needed to create the scheduled job?
Does asenumerable execute the query?
How to read/write files from pl/sql?
What is a record in a database?
What are the 3 types of behavioral triggers?
Can we rollback delete command?
How many subqueries can be nested in a statement?
How can get second highest salary in sql?
Can we create a trigger on view?
How much does sql cost?