Is there a way in Typo3 to query the date in an elegant way? I experimentet with the *tt_content* field date and I find out that the date is saved as a 10 character long integer.. I thought it is in an other format.
I would like something like this:
10 < styles.content.getLeft
10 {
select {
where = date = %y2011 //everything with year 2011
}
}
OR
10 < styles.content.getLeft
10 {
select {
where = date > 23-1-1996
}
}