I am using MySql 5.1. i have to database tables Users and Users_group_mapping.
User Table :
userid, username, points
1 user1 10
2 user2 21
3 user3 7
4 user4 44
Users_group_mapping Table :
userid, usergroupid
1 1
2 2
4 2
4 1
4 3
And in an allocation Process i have to allocate points to corresponding groups users. For that test data is like :
Data : $dtArr = array(
[1] => 40,
[2] => 80,
[3] => 100
)
In array $dtArr, the key is the attribute 'usergroupdid' in Users_group_mapping table and the value is the attribute points that to be updated in Users table.
e.g. if usergroupid = 2 and points to be given = 40 then from Users_group_mapping table the users in usergroup '2' - which are userids '2' & '4' - both users will get 40 points each. userid '4' will get only 40 points allocated through usergroup '2' even though the user belongs to usergoups '1' & '3' also.
What will be the SQL Update query for this operation?
Please guide me..!! thanks in advance.!!