I have a BigQuery table with a schema like so:
{
{"name": "timeCreated", "type": "datetime"},
{"name": "userid", "type": "string"},
{"name": "textid", "type": "string"},
{"name": "textvalue": "type": "float"}
}
I am trying to make a query so I end up with the row of the latest timeCreated for each pair of userid and textid combinations. I have tried GROUP BY et al but I cannot seem to get the ORDER BY the timeCreated field then remove all the rows that are not at the top for each pair of userid and textid columns.
