Hi
I want to display 30/11/2023 Date as Nov'23
Regards
Hi
I want to display 30/11/2023 Date as Nov'23
Regards
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Jignesh KumarPosted Feb 6, 2024, 8:14 AM
Hello Ramco,
You can use this one,
Jithu ThomasPosted Feb 6, 2024, 8:33 AM
you can execute the code by the following code: -
Mohammad HussainPosted Feb 6, 2024, 5:37 AM
Hi Ramco,
Please try this,
Amit MohantyPosted Feb 6, 2024, 5:33 AM
Try this
Anandu G NathPosted Feb 6, 2024, 5:27 AM
ASp.NetHub
#Asp.NetHub
Check this channel for more Videos
https://youtube.com/@asp.netsimpletutorial3964?si=1SdUvvq2SuNiLVzA
Vishal JoshiPosted Feb 6, 2024, 5:00 AM
Hello Ramco,
Please try the below SQL Query code to get date format as a month and year (MMM'yy).
Please make sure that input variable or column datatype should be DateTime.
Thanks
Vishal
Rafnas T PPosted Feb 6, 2024, 3:45 AM
Hi Ramco,
You can wright below select query to format you date
SELECT DATE_FORMAT('2023-11-30', '%b''%y') AS FormattedDate;
if this answers your query, please accept this answer.