Select Sum and multiple columns in 1 select statement

前端 未结 4 1515
醉酒成梦
醉酒成梦 2021-01-07 14:14

Is there a way to select the sum of a column and other columns at the same time in SQL?

Example:

SELECT sum(a) as car,b,c FROM toys
4条回答
  •  没有蜡笔的小新
    2021-01-07 15:17

    How about:

    select sum(a) over(), b, c from toy;
    

    or, if it's required:

    select sum(a) over(partition by b), b, c from toy;
    

提交回复
热议问题