MySQL SUBSTRING_INDEX () फ़ंक्शन
उदाहरण
एक निर्दिष्ट संख्या में सीमांकक होने से पहले एक स्ट्रिंग का सबस्ट्रिंग लौटाएं:
SELECT SUBSTRING_INDEX("www.w3schools.com", ".", 1);
परिभाषा और उपयोग
SUBSTRING_INDEX() फ़ंक्शन एक निर्दिष्ट संख्या में सीमांकक होने से पहले एक स्ट्रिंग का एक विकल्प देता है।
वाक्य - विन्यास
SUBSTRING_INDEX(string, delimiter, number)
पैरामीटर मान
Parameter | Description |
---|---|
string | Required. The original string |
delimiter | Required. The delimiter to search for |
number | Required. The number of times to search for the delimiter. Can be both a positive or negative number. If it is a positive number, this function returns all to the left of the delimiter. If it is a negative number, this function returns all to the right of the delimiter. |
टेक्निकल डिटेल
काम में: | MySQL 4.0 . से |
---|
और ज्यादा उदाहरण
उदाहरण
एक निर्दिष्ट संख्या में सीमांकक होने से पहले एक स्ट्रिंग का सबस्ट्रिंग लौटाएं:
SELECT SUBSTRING_INDEX("www.w3schools.com", ".", 2);