I've arequirement like this.
A table TEST and in table 2 columns A and B.
need to write sql query like this.
select A,B, sum(A,B) from TEST;

that means if value of column A is 5 and column B is 10 output should be like.

A B SUM(A,B)
5 10 15

Any idea how to do this in a single sql.