If by "append" you mean you want to concatenate more data to a char, varchar or text column then you can accomplish that with an Update query.
Update table1 Set colA = ColA + 'the new data to add to the column'
Where <enter you selection criteria>
If the data is in another related table you can Update table1 with data from table2.
Update table1 Set colA = colA + table2.ColX
From table1 Inner Join table2 On table1.ID=table2.ID
Where <enter you selection criteria>
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.