Say I have a table like the one below in MS Access:
tblPay
Payer claim percent
tom 100 10
jerry 200 20
tim 230 5
I'd like to concatenate the column values, and add the numeric values together also. I need to store the results for both in the table itself:
ex.
payer claim percent
tom/jerry 300 30
How would I go about doing this in SQL (MS Access). I'm stuck trying to figure out the syntaxes of INSERT INTO statements....Thanks.
Start Free Trial