Suppose I have a table below:
1) tblScore
I have this query:
SELECT ts.VendorID, ts.Score, COUNT(*) FROM trxscore ts GROUP BY ts.VendorID, ts.Score ORDER BY ts.VendorID, ts.Score
But how to show the table as:
And, is it possible to get the average value from the text? that is, VendorID 12001 should get the average value of A. Thank you ...
source share