How to convert date into month in excel | एक्सेल में महीने में तारीख कैसे बदलें यदि आप संख्या के बजाय एक महीने का नाम प्राप्त करना चाहते हैं, तो आप TEXT फ़ंक्शन का फिर से उपयोग करते हैं, लेकिन एक अलग दिनांक कोड के साथ: = TEXT (A2, "mmm") - एक संक्षिप्त माह का नाम, जनवरी के रूप में - Dec. = TEXT (A2, "mmmm") - जनवरी - दिसंबर के रूप में एक पूरे महीने का नाम देता है निम्नलिखित सरल सूत्र आपको दिए गए दिनांक से केवल महीने और वर्ष निकालने में मदद कर सकते हैं, कृपया निम्नानुसार करें: 1. सूत्र दर्ज करें: = TEXT (A2, "mmm-yyyy") अपने डेटा के अलावा एक रिक्त कक्ष में, C2, उदाहरण के लिए, स्क्रीनशॉट देखें: एक्सेल में इस तिथि प्रारूप को प्राप्त करने के अन्य तरीके हैं। जैसे आप महीने और साल निकाल सकते हैं और दो तारीख तार जोड़ सकते हैं। आपको सेल फॉर्मेटिंग विकल्प में कस्टम दायर से तारीख प्रारूप भी मिल सकता है।
Sql-Keywords (distinct , order by) and where clause Distinct Keyword The DISTINCT keyword is used to return only distinct (unique) column values. Sql tables often contains many duplicate values in columns and sometimes you only want to list the unique(distinct) values. sample table : In table we can multiple name with same values. to view on distinct column value following distinct command to execute Select distinct empname from k4coding_emp Distinct Keyword : The ORDER BY keyword is used to sort the output in ascending or descending order. ORDER BY Syntax SELECT col1, col2,col3, ... FROM tablename ORDER BY col1, col2, ... ASC|DESC; The ORDER BY keyword sorts the records in ascending order by default. Select * from k4coding_emp order by empname To sort the records in descending order, use the DESC keyword. Select * from k4coding_emp order by empname desc Where Clause: The SQL WHERE clause is used to filter the records, it contains logical conditions . The WHERE c...