In my PostgreSQL database, there is a field labeled as "timestamp with time zone compare"
Currently, I am trying to implement a data range comparison using JavaScript
var start = Date.UTC(2012,02,30);//1333065600000
var end = Date.UTC(2013,02,30); //1364601600000
This process is resulting in bigint numbers:
Wondering how I can incorporate start(1333065600000) and end (1364601600000) into an SQL query for PostgreSQL?