I have a SQL table which mentions stock quantity like this:
Tool: Stock
A: 100
A: 200
B: 50
I want to create a view where it will give me the following output, where it would count the sum of same tool numbers:
Tool: Stock
A: 300
B: 50
How to achieve this? Thanks in advance :)