PRB: CONVERTing Character to an Integer Causes Syntax Error

Last reviewed: April 25, 1997
Article ID: Q47180

The information in this article applies to:

  - Microsoft SQL Server version 4.2 for OS/2
  - Microsoft SQL Server version 4.2

SYMPTOMS

According to the "Microsoft SQL Server Language Reference," you can convert from a character to an integer. However, the following statement,

   select convert(int,'A')

causes the following error:

   Msg 249, Level 16, State 1
   Syntax error converting CHAR value 'A' to an INT4 field

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

   select convert(int,'1')

returns 1 as expected.

WORKAROUND

To return the ASCII numerical representation of a letter, use the ascii() function. For example

   select ascii('A')

returns 65.


Additional query words: Transact-SQL Windows NT
Keywords : kbother SSrvGen SSrvServer SSrvWinNT
Platform : OS/2 Windows
Issue type : kberrmsg


THE INFORMATION PROVIDED IN THE MICROSOFT KNOWLEDGE BASE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND. MICROSOFT DISCLAIMS ALL WARRANTIES, EITHER EXPRESS OR IMPLIED, INCLUDING THE WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT SHALL MICROSOFT CORPORATION OR ITS SUPPLIERS BE LIABLE FOR ANY DAMAGES WHATSOEVER INCLUDING DIRECT, INDIRECT, INCIDENTAL, CONSEQUENTIAL, LOSS OF BUSINESS PROFITS OR SPECIAL DAMAGES, EVEN IF MICROSOFT CORPORATION OR ITS SUPPLIERS HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. SOME STATES DO NOT ALLOW THE EXCLUSION OR LIMITATION OF LIABILITY FOR CONSEQUENTIAL OR INCIDENTAL DAMAGES SO THE FOREGOING LIMITATION MAY NOT APPLY.

Last reviewed: April 25, 1997
© 1998 Microsoft Corporation. All rights reserved. Terms of Use.