Hi Wajih Arfaoui,
Thanks for reaching out to Microsoft Q&A.
Yes, It should. Suppose you have a dedicated table called 'dedtbl' and an external table called 'exttbl'. You can perform joins, filters, and aggregations across these tables.
SELECT ds.ProductID, ds.SalesAmount, es.ProductName FROM dedtbl ds JOIN
exttbl es ON ds.ProductID = es.ProductID;
Ensure that the column definitions (data types, etc.) match between the dedicated and external tables. The actual data resides externally hence performance considerations may differ based on the data source. The benefit is that the external tables do not require compute resources, so you don’t need to unpause the dedicated sql pool to work with them.
Try and let me know.
Please 'Upvote'(Thumbs-up) and 'Accept' as an answer if the reply was helpful. This will benefit other community members who face the same issue.