I am trying to add a single row table to a table with multiple rows but do not want the new added row to repeat for each line of the original table
Taking this example from an earlier post here :
Table 1 (multiple rows):
1 | A
2 | B
3 | C
4 | D
5 | E
Table 2 (single row):
ABC | DEF
Expecting result:
1 | A | ABC | DEF
2 | B
3 | C
4 | D
5 | E