وظيفة MySQL ASCII ()
مثال
إرجاع قيمة ASCII للحرف الأول في "CustomerName":
SELECT ASCII(CustomerName) AS NumCodeOfFirstChar
FROM Customers;
التعريف والاستخدام
ترجع الدالة ASCII () قيمة ASCII للحرف المحدد.
بناء الجملة
ASCII(character)
قيمه المعامل
Parameter | Description |
---|---|
character | Required. The character to return the ASCII value for. If more than one character is entered, it will only return the value for the first character |
تفاصيل تقنية
يعمل في: | من MySQL 4.0 |
---|