An Azure analytics service that brings together data integration, enterprise data warehousing, and big data analytics. Previously known as Azure SQL Data Warehouse.
It's still grossly unclear what you want to do.
Generally, to compare two tables with the same schema, the pattern is:
SELECT *
FROM A
FULL JOIN B ON A.keycol1 = B.keycol1
AND A.keycol2 = B.keycol2
WHERE NOT EXISTS (SELECT A.* INTERSECT SELECT B.*)
But if one table is in SQL Serve on-prem and the other is Synapse Serverless pool, you would need a linked server. And making such a comparison over a linked server where data has to be dragged across the network - well, it will not be fast.