I am trying to achieve this formt from sql server. I have tried with various things but not able to achieve this Ultimately this should be a string datatype
'23 Apr, 2018 2:59 PM'
I am trying to achieve this as below:
CONVERT(CHAR(12), dbo.fn_GetDateIntime(cl.createdDate), 107)holla,
convert(char(3), dbo.fn_GetDateIntime(cl.createdDate), 0)MonthPart,
CONVERT(VARCHAR(5), dbo.fn_GetDateIntime(cl.createdDate), 114) TimePart,
CONVERT(VARCHAR(8),GETDATE(),108),