Bronze 1
Since ‎07-18-2023
‎12-19-2023

My Stats

  • 3 Posts
  • 0 Solutions
  • 0 Likes given
  • 0 Likes received

mr_joel's Bio

Badges mr_joel Earned

View all badges

Recent Activity

I have data that probably looks something like this:DateLabelUser2023-09-01Foojdoe2023-09-08Footvargas2023-10-01Bizzjhinks2023-07-28Barjdoe2023-08-15BizztvargasWhat I'm trying to do is something that in mySQL would beselect label,count(*) from table ...
I have a view that produces data like this:Item_iditem_descriptionbucket_id23cook book442apron222spoon412frying pan328cook book4I'd like to count the rows per bucket_id. If I was using SQL, it would be count(*) and GROUP BY. The result would look som...