J
Jerry
Hi,
I have 2 tables: A with Key1, String1, B with Key1, Val1 (sorted by Key1 and
Val1).
Table B has multiple records for each Key1.
Update query:
UPDATE A INNER JOIN B (ON A.Key1=B.Key1) SET A.String1=A.String1 & B.Val1;
works fine except the order by which the values are concatenated into
String1 is in many cases wrong. Can't force the proper order... Can anybody
help?
Jerry
I have 2 tables: A with Key1, String1, B with Key1, Val1 (sorted by Key1 and
Val1).
Table B has multiple records for each Key1.
Update query:
UPDATE A INNER JOIN B (ON A.Key1=B.Key1) SET A.String1=A.String1 & B.Val1;
works fine except the order by which the values are concatenated into
String1 is in many cases wrong. Can't force the proper order... Can anybody
help?
Jerry