I have two tables in my database
Coupon Table
- id (int)
- Name (nvarchar(max))
- NoofUses (int)
CouponUse Table
- id(int)
- Couponid(int)
- CreateDate(datetime)
Whenever a user clicks on a coupon an entry goes into the CouponUse table containing that Coupon's id
Now there is a column in the coupon table called NoofUses. I want to write a cursor inside a stored procedure which loops over couponuse table and sees how many rows are there for one coupon and fill that number in NoofUses field in coupon.
I have this query
select COUNT(*) as totalcount , Name as name from Coupon as coupon
join CouponUse as couponuse on coupon.id = couponuse.couponid
group by couponuse.couponid , coupon.Name
which gives me the coupon name and its count from couponuse
But I don't know how to implement that in a stored procedure using a cursor ?
Anything you ask about question will be appreciated , Thanks