I have a table that looks like this:
date | title | count
------+-------+-------
04/20 | foo | 420
04/20 | bar | 194
04/21 | foo | 23
04/21 | bar | 100
I want to get a result like this:
date | foo | bar
------+-----+-----
04/20 | 420 | 194
04/21 | 23 | 100
How can I do this in Redshift SQL? Thanks!