Follow along with the video below to see how to install our site as a web app on your home screen.
Примечание: This feature may not be available in some browsers.
CREATE function multiply8 (price integer)
returns integer
return price*8;
select multiply8(price) from product;
CREATE VIEW `products_usd` AS select <перечисление полей, кроме цены>,price*8 as price from `products`;
select * from products_usd;
CREATE function course(price integer,course float)
returns float
return round((price*course),2);
Usd:
select course(price,7.95) from products;
Eur:
select course(price,10.45) from products;