I have a datetime format that is displayed as the following:
'13-10-2016 11:58:00'
I require it to be shown as :
'2016-10-13 11:58:00'
How can I change the expression below in order to match this?
Expression:
"SELECT _sessions.session_id AS session_id, _sessions.user_id AS user_id, _sessions.updated_at FROM public._sessions _sessions" + (@[User::IncrementalOrFullLoad] == "F" ? "" : " WHERE
Current output:
SELECT _sessions.session_id AS session_id, _sessions.user_id AS user_id, _sessions.updated_at FROM public._sessions _sessions WHERE
_sessions.updated_at > '13-10-2016 11:58:00'