I am having a table with records like this in MS Access:
ID field2 field3 field4 field5
1 345 asr
2 ase 567 788
3 456 ghy
4 jki 568 899
5 235 yui
6 hju 456 456
I want to merge it to get a table like this:
ID field2 field3 field4 field5
1 345 asrase 567 788
3 456 ghyjki 568 899
5 235 yuihju 456 456
Is this possible with queries?
Assuming the rows continue like the example, this query would do:
It joins the table on itself, looking for the next row. It combines both rows to produce the desired result.