I have a DateTime field .for e.g. 2013-08-22 12:00:00 AM. I want to concatenate the year and month and I want the output as 201308.
When i try year (datetime_field)+month(datetime_field) what i get get is 2013+08=2021 .. i.e it adds instead of concatenating. Can someone pl tell how to get the output as 201308?