Hello,
I have a table CLIENTS which stores name and other details of all the clients.
Columns are Client_Id, Name.
Suppose data is
1 ABC
2 XYZ
3 PQR
Table TRANSACT stores transactions done with the clients.
Its Columns are Transact_id, Client_id and Date
For a client there can be more than one transaction.
Primary key is Transact_id
1 1 12/12/02
2 2 13/12/02
3 1 13/12/02
From my sqlquery i want to list Distinct Client names Vertically and Transaction done date horizontally.
Like this -
ABC 12/12/02 13/12/02
XYZ 13/12/02
Kindly guide.
regds
ani77
I have a table CLIENTS which stores name and other details of all the clients.
Columns are Client_Id, Name.
Suppose data is
1 ABC
2 XYZ
3 PQR
Table TRANSACT stores transactions done with the clients.
Its Columns are Transact_id, Client_id and Date
For a client there can be more than one transaction.
Primary key is Transact_id
1 1 12/12/02
2 2 13/12/02
3 1 13/12/02
From my sqlquery i want to list Distinct Client names Vertically and Transaction done date horizontally.
Like this -
ABC 12/12/02 13/12/02
XYZ 13/12/02
Kindly guide.
regds
ani77