我有 aq 表,其中没有。非键列的数量是可变的。此外,这些列名的名称中包含一个整数。我想在这些列上执行一些功能而不实际使用它们的实际名称
我怎样才能做到这一点?
例如:
table:
a | col10 col20 col30
1 | 2 3 4
2 | 5 7 8
// Assume that I have numbers 10, 20 ,30 obtained from column names
I want something like **update NewCol:10*col10+20*col20+30*col30 from table**
except that no.of columns is not fixed so are their inlcluded numbers