Hello All,
I have a query that I use to create another table:
The problem is that sometimes there is no value in column1 and then the new entry in table2 is 'space' and then column2. For example if first column has '1' and second column has '2', the new record in the table2 would be '1 2' but if another row has nothing in the column 1 and then '3' in the column2, resulting row in table to would be ' 3'. How to remove the leading space? Or how to prevent the empty space from being created?
Thank you for your time.
danield
I have a query that I use to create another table:
Code:
SELECT column1 & " " & column2 INTO table2 FROM table1
Thank you for your time.
danield
Comment