Damien Locque
Damien Locque

Reputation: 1809

Convert DateTime to Date Doctrine php

Hello i'm working with Doctrine (php) and mysql.

I need to convert my Datetime field to a Date. But Doctrine date manipulator function are rare ...

I've try some manipulation with DATE_ADD and DATE_DIFF but without succes.

The purpose is to GROUP BY Date to display statistics per day.

Upvotes: 1

Views: 2869

Answers (1)

Sherlock
Sherlock

Reputation: 7597

Simply use GROUP BY DATE(your_column).

Upvotes: 1

Related Questions