SQL Calculated field selected values -



SQL Calculated field selected values -

i have sql view columns idx, date, signal, value have signal1 signal10 want on daily basis computed column calculated follows:

compval= signal7*signal8-signal9

other columns retain original values

how this?

you can create view or add together column view:

create view v_view select v.*, (signal7*signal8-signal9) compval first_view v;

sql

Comments

Popular posts from this blog

Delphi change the assembly code of a running process -

json - Hibernate and Jackson (java.lang.IllegalStateException: Cannot call sendError() after the response has been committed) -

C++ 11 "class" keyword -