Hi
I have 2 tables, one tbl_Application contains details of applications, tbl_A_Numbers contains details of account numbers for that application. I want to run a query which puts all the records from tbl_A_Numbers into one column, rather than the conventional link.
So, i have APplication 1, 1234,1235,1236
rather than
Application 1, 1234
Application 1, 1235
Application 1, 1236
and so on.
Is this possible, just in SQL?
I have tried using (Select A_Number from tbl_A_Numbers where A_Number.Application_ID=tbl_A_Numbers.Application_ID) and it doesnt work
Thanks
I have 2 tables, one tbl_Application contains details of applications, tbl_A_Numbers contains details of account numbers for that application. I want to run a query which puts all the records from tbl_A_Numbers into one column, rather than the conventional link.
So, i have APplication 1, 1234,1235,1236
rather than
Application 1, 1234
Application 1, 1235
Application 1, 1236
and so on.
Is this possible, just in SQL?
I have tried using (Select A_Number from tbl_A_Numbers where A_Number.Application_ID=tbl_A_Numbers.Application_ID) and it doesnt work
Thanks