G
Guest
I have four fields which I want to merge into 2 fields:
Run_From
Run_To
Run_From_Postcode
Run_To_Postcode
I want to merge the above two sets of data from each pair into two new fields:
Run_Title
Run_Postcode
I tried doing it with a Union query, but I think that only works on 2
tables?. I have just the one table (which I can't split, as it is critical to
the rest of the database.)
this is my SQL for the query
SELECT tbl_Runs.Run_No, tbl_Runs.Run_From, tbl_Runs.Run_From_Postcode,
tbl_Runs.Run_To, tbl_Runs.Run_To_Postcode
FROM tbl_Runs;
Run_From
Run_To
Run_From_Postcode
Run_To_Postcode
I want to merge the above two sets of data from each pair into two new fields:
Run_Title
Run_Postcode
I tried doing it with a Union query, but I think that only works on 2
tables?. I have just the one table (which I can't split, as it is critical to
the rest of the database.)
this is my SQL for the query
SELECT tbl_Runs.Run_No, tbl_Runs.Run_From, tbl_Runs.Run_From_Postcode,
tbl_Runs.Run_To, tbl_Runs.Run_To_Postcode
FROM tbl_Runs;