CREATE TABLE MYTABLE( kol Integer, price Decimal(10,3), RESUME COMPUTED BY (kol*price););
select year, month, year*0.1 as qwe from reports
SQLALTER TABLE tbl ADD col_name AS (tbl.col1+tbl.col2)