Viewing 7 posts - 1 through 7 (of 7 total)
i m having big trouble understanding them.... I thought of getting some explanation here..but..
thanks for your suggestion
December 23, 2011 at 10:35 am
Here is the actual table definition,view definition
create table table1
(id int,name varchar(10))
create table table2
(id int,marks int,grade varchar(2))
create view sampleview
as
select t1.name,t2.marks,t2.grade
from table1 as t1
join table2 as t2
on t1.id=t2.id
create trigger samptrigger
on sampleview
instead of...
October 5, 2011 at 8:45 am
with the help of that i did execute the trigger.but i could not be able to see the inserted row in view.can you help me in that
thank you
October 4, 2011 at 1:14 pm
sorry to respond lately..
For creating instead of insert trigger on view.i am getting the following message
and the code that i prepared is
create trigger sampletrigger
on...
October 4, 2011 at 11:17 am
but i am trying to insert data on multiple base tables in a view.
October 1, 2011 at 8:18 pm
Viewing 7 posts - 1 through 7 (of 7 total)