संक्षिप्त नाम को पूरे महीने के नाम में बदलने के लिए उपयोग करें:
mysql> select monthname(str_to_date('Mar','%b'));
+------------------------------------+
| monthname(str_to_date('Mar','%b')) |
+------------------------------------+
| March |
+------------------------------------+
संक्षिप्त नाम को संख्या उपयोग में बदलने के लिए:
mysql> select month(str_to_date('Mar','%b'));
+--------------------------------+
| month(str_to_date('Mar','%b')) |
+--------------------------------+
| 3 |
+--------------------------------+