The information in this article applies to:
SYMPTOMS
According to the "Microsoft SQL Server Language Reference" and Books Online, you
can convert from a character to an integer. However, the
following statement,
causes an error similar to the following:
CAUSE
A convert() from a char to an integer can only be done if it
"makes sense." For example, you can convert the character "1"
(one) to an integer, but you cannot convert the letter "A".
For example
returns 1 as expected. WORKAROUND
To return the ASCII numerical representation of a letter, use
the ascii() function. For example
returns 65. Additional query words: Transact-SQL Windows NT
Keywords : kbother SSrvGen SSrvServer SSrvWinNT |
Last Reviewed: November 8, 1999 © 2000 Microsoft Corporation. All rights reserved. Terms of Use. |