I am a little confused in the correct format for the solr date type field. When importing from mySQL database, should it be in this format?
1995-12-31T23:59:59Z
In my database, the date and time fields are in different columns. Right now my request is as follows.
SELECT eb.eventID, concat(CAST(e.startDate AS CHAR),'T ',CAST(e.startTime as CHAR),'Z')
Am I on the right track?
source share