Hi,
Could you please help me to find my syntax errors in the query below:
Thanks in advance!
Could you please help me to find my syntax errors in the query below:
Code:
select avg(hd) as AVG_HD from (Product inner join PC on Product.model=PC.model) T where exists (select * from Product where type='Printer' and T.maker=maker)
Comment