To fit an edge case, I'd like to create a stored procedure (Access SQL!) which simply returns the concatenation of three inputs. So
MyProcedure('AAA','BBB','CCC')
returning
'AAA,BBB,CCC'
Obviously this is elementary in most programming languages, but I didn't know if SQL was capable of this at all.