وظيفة MySQL SUBSTR ()
مثال
استخرج سلسلة فرعية من سلسلة (ابدأ من الموضع 5 ، واستخرج 3 أحرف):
SELECT SUBSTR("SQL Tutorial", 5, 3) AS ExtractString;
التعريف والاستخدام
تستخرج الدالة SUBSTR () سلسلة فرعية من سلسلة (بدءًا من أي موضع).
ملاحظة: الدالتان SUBSTR () و MID () تساويان الدالة SUBSTRING () .
بناء الجملة
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;