How can I select rows from a table filtered by a specific year (e.g. 2019
) if date field is saved as epoch timestamp (millisecond, e.g. 1572093976705
) and just using SQL query
I don't want to get all rows in a list (use some programming language, e.g. Java), create Date
/Calendar
object from milliseconds and then check if items equal a specific year to filter the list