MySQL सबस्ट्र () फ़ंक्शन
उदाहरण
एक स्ट्रिंग से एक सबस्ट्रिंग निकालें (स्थिति 5 से शुरू करें, 3 वर्ण निकालें):
SELECT SUBSTR("SQL Tutorial", 5, 3) AS ExtractString;
परिभाषा और उपयोग
SUBSTR () फ़ंक्शन एक स्ट्रिंग से एक सबस्ट्रिंग निकालता है (किसी भी स्थिति से शुरू)।
नोट: SUBSTR () और MID () फ़ंक्शन सबस्ट्रिंग () फ़ंक्शन के बराबर हैं।
वाक्य - विन्यास
SUBSTR(string, start, length)
या:
SUBSTR(string FROM start FOR 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 | Optional. The number of characters to extract. If omitted, the whole string will be returned (from the start position) |
टेक्निकल डिटेल
काम में: | MySQL 4.0 . से |
---|
और ज्यादा उदाहरण
उदाहरण
कॉलम में टेक्स्ट से एक सबस्ट्रिंग निकालें (स्थिति 2 से शुरू करें, 5 वर्ण निकालें):
SELECT SUBSTR(CustomerName,
2, 5) AS ExtractString
FROM Customers;
उदाहरण
एक स्ट्रिंग से एक सबस्ट्रिंग निकालें (अंत से शुरू करें, स्थिति -5 पर, 5 वर्ण निकालें):
SELECT SUBSTR("SQL Tutorial", -5, 5) AS ExtractString;