MySQL ASCII () फ़ंक्शन
उदाहरण
"ग्राहक नाम" में पहले वर्ण का ASCII मान लौटाएँ:
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 . से |
---|