وظيفة MySQL RIGHT ()
مثال
استخراج 4 أحرف من سلسلة (تبدأ من اليمين):
SELECT RIGHT("SQL Tutorial is cool", 4) AS ExtractString;
التعريف والاستخدام
تستخرج الدالة RIGHT () عددًا من الأحرف من سلسلة (بدءًا من اليمين).
نصيحة: انظر أيضًا إلى وظيفة LEFT () .
بناء الجملة
RIGHT(string, number_of_chars)
قيمه المعامل
Parameter | Description |
---|---|
string | Required. The string to extract from |
number_of_chars | Required. The number of characters to extract. If this parameter is larger than the number of characters in string, this function will return string |
تفاصيل تقنية
يعمل في: | من MySQL 4.0 |
---|
مزيد من الأمثلة
مثال
استخراج 5 أحرف من النص في عمود "CustomerName" (بدءًا من اليمين):
SELECT RIGHT(CustomerName, 5) AS ExtractString
FROM Customers;