TO BYŁO ROK TEMU NA KOLOSIE
1) Wyświetl nazwę produktu, jego cenę, stan na magazynie oraz wartość:
select productname, unitprice, unitsinstock, unitprice*unitsinstock as wartosc
from products
where productname like '%t%' or productname like '%s%'
order by 4 desc
2) Wyświetl nazwę produktu, cenę netto, oraz oblicz cenę brutto (vat 22%), dla tych cen netto które nie zawierają się w przedziale <20,40> :
select productname, unitprice as cenanetto, '22%' as VAT, unitprice * 0.22 as cenabrutto
from products
where unitprice not between 20 and 40
order by productname asc
3) Wyświetl produkty których bazawa zawiera litery "t", "s" i "p":
select productname
from products
where productname like '%t%' and productname like '%s%' and productname like '%p%'