Had you tested your script before you posted, you would have found that it had errors.
It would also have helped if you had given a background to what you want to achieve. But from the terse description you have given, this meets your requirement:
IF EXISTS (SELECT * FROM table1_new
EXCEPT
SELECT * FROM table2_new)
PRINT 'Not matched'
ELSE
PRINT 'Matched'
By the way, I deleted two tags from your question that were not relevant to the question.