I have three tables T1 , T2 , T3.
T1 --- Fname, Lname, usrkey, cert_id, grp_cert_id
T2 --- usrkey,empno
T3 --- usrkey
I am trying to write a query to get the list of all usernames and Groupnames along with empno.
Username = fname + Lname
Groupname = fname + lname if certid = grp_cert_id
Conditions are:
Every username will have a Groupname.
Also one Groupname can have more than one username.
The table looks something like this
Empno Username GroupName
1 John Smith
2 Sara Smith
3 Joe Bob
4 Linda Smith
5 Kathy Bob
I would like to see the result as :
Empno Username GroupName
1,2,4 John Smith
1,2,4 Sara Smith
3,5 Joe Bob
1,2,4 Linda Smith
3,5 Kathy Bob
Any help is appreciated.
T1 --- Fname, Lname, usrkey, cert_id, grp_cert_id
T2 --- usrkey,empno
T3 --- usrkey
I am trying to write a query to get the list of all usernames and Groupnames along with empno.
Username = fname + Lname
Groupname = fname + lname if certid = grp_cert_id
Conditions are:
Every username will have a Groupname.
Also one Groupname can have more than one username.
The table looks something like this
Empno Username GroupName
1 John Smith
2 Sara Smith
3 Joe Bob
4 Linda Smith
5 Kathy Bob
I would like to see the result as :
Empno Username GroupName
1,2,4 John Smith
1,2,4 Sara Smith
3,5 Joe Bob
1,2,4 Linda Smith
3,5 Kathy Bob
Any help is appreciated.