Posts by Rogério • 21 points
1 post
-
2
votes1
answer170
viewsA: How to Count Total of Multiple Type Records in a Single Query in sql
SELECT cat, COUNT(*) as total FROM a_finan GROUP BY cat This will bring the total records grouped by category 'cat'.