Meine Frage ist dies. Ich habe eine Reihe von Einträgen und möchte sie nach Datum gruppieren. Aber anstatt ein Datum in meiner Datenbank zu haben, habe ich ein Datum / Uhrzeit-Feld. Was mache ich?
select * from follow_queue group by follow_date cast follow_date as date
Das funktioniert nicht.
select * from follow_queue group by cast(follow_date as date)
zuerst.