You are on page 1of 1

select sku,product_name from product p left join invoice_item i on

p.id=i.product_id where invoice_id is null order by sku asc;


select round(long_w,4) from station where lat_n=(select min(lat_n) from station
where lat_n > 38.7780);
select sum(population) from city where countrycode='JPN';
select max(population)-min(population) from city;

You might also like