hello friends
I have one table, t1, which has fileds called userid, week and year fields. I want to call a procedure which takes all three values as arguments and fires an update query. How can i do it?
My update query should be like
update t1
set week = (value of procedure argument)
, year = (value of procedure argument)
where userid=(value of procedure argument);