| Code | Output |
|---|---|
| select ascii('0') | 48 |
| select ascii('9') | 57 |
| select ascii('A') | 65 |
| select ascii('Z') | 90 |
| select ascii('a') | 97 |
| select ascii('z') | 122 |
| select ascii('' ) | 32 |
| select ascii(' ') | 32 |
| select ascii('012345') | 48 |
| select ascii(NULL) | NULL |
| select ascii(1) | Error |
|
Roger Hall COMPUSPEC |
|