I am filling in an ID table it has user_id and rights_id.
each user has multiple rights but they are not in order.
User 1 with an id of 2 has the rights 1,3,5,8,16,20
Is there a way to make a variable = to this string of numbers then pull it apart to put them into the table like this
U_ID R_ID
1 1
1 3
1 5
. .
. .
. .
1 20
each user has multiple rights but they are not in order.
User 1 with an id of 2 has the rights 1,3,5,8,16,20
Is there a way to make a variable = to this string of numbers then pull it apart to put them into the table like this
U_ID R_ID
1 1
1 3
1 5
. .
. .
. .
1 20