News

Files Included: task6_subqueries.sql – Contains all required subquery examples. screenshots/ – Folder with screenshots of query execution and results.
select * from customers c where exists (select 1 from orders o where o.customer_id = c.customer_id); 'EXISTS' checks if a row exists in the orders table for each customer. It returns only customers ...