HI How to export timestamp as IST format for CSV
What's IST format?
MongoDB 4.0 has introduced $toDate aggregation which simply convert timestamp to ISO date
db.collection.aggregate([ { "$project": { "regDate": { "$toDate": "$createTime" } }} ])
Replies have been locked on this page!
What's IST format?
MongoDB 4.0 has introduced $toDate aggregation which simply convert timestamp to ISO date
Then export the cursor to ISV format.What's IST format?
MongoDB 4.0 has introduced $toDate aggregation which simply convert timestamp to ISO date
Then export the cursor to ISV format.Replies have been locked on this page!