I have a table....create table tblCartItem(
pkCartItemId int primary key identity,
CartId int not null,
ProductId int not null,
Quantity int not null,
Price nvarchar(15)
)
...and I want to perform sum opeartion on that like as ...Select SUM(Price) from tb...