MySQL MID () फ़ंक्शन
उदाहरण
एक स्ट्रिंग से एक सबस्ट्रिंग निकालें (स्थिति 5 से शुरू करें, 3 वर्ण निकालें):
SELECT MID("SQL Tutorial", 5, 3) AS ExtractString;
परिभाषा और उपयोग
MID () फ़ंक्शन एक स्ट्रिंग से एक सबस्ट्रिंग निकालता है (किसी भी स्थिति से शुरू)।
नोट: MID () और SUBSTR () फ़ंक्शन सबस्ट्रिंग () फ़ंक्शन के बराबर हैं।
वाक्य - विन्यास
MID(string, start, length)
पैरामीटर मान
Parameter | Description |
---|---|
string | Required. The string to extract from |
start | Required. The start position. Can be both a positive or negative number. If it is a positive number, this function extracts from the beginning of the string. If it is a negative number, this function extracts from the end of the string |
length | Required. The number of characters to extract |
टेक्निकल डिटेल
काम में: | MySQL 4.0 . से |
---|
और ज्यादा उदाहरण
उदाहरण
कॉलम में टेक्स्ट से एक सबस्ट्रिंग निकालें (स्थिति 2 से शुरू करें, 5 वर्ण निकालें):
SELECT MID(CustomerName,
2, 5) AS ExtractString
FROM Customers;
उदाहरण
एक स्ट्रिंग से एक सबस्ट्रिंग निकालें (अंत से शुरू करें, स्थिति -5 पर, 5 वर्ण निकालें):
SELECT MID("SQL Tutorial", -5, 5) AS ExtractString;