According to the documentation, the simple answer is no. The syntax supports a single table or view. However, with an updated view, you can add / update to multiple tables.
However, your example seems to be trying to do something else that you cannot do. The WHEN MATCHED clause indicates what to do with UPDATE. You cannot INSERT from this sentence. The same goes for the WHEN NOT MATCHED clause - you cannot UPDATE from this clause, only INSERT.
source share