Re: incorrect char() string for bigint column
Posted by: Barry Galbraith
Date: August 07, 2011 07:36PM

Is this what you mean?


mysql> SELECT BI
    -> , CAST(BI AS CHAR)
    -> FROM
    -> TESTBICHAR;
+--------------+------------------+
| BI           | CAST(BI AS CHAR) |
+--------------+------------------+
| 130333868145 | 130333868145     |
+--------------+------------------+
1 row in set (0.00 sec)

Or what are really trying to do?

Good luck,
Barry.



Edited 1 time(s). Last edit at 08/07/2011 07:40PM by Barry Galbraith.

Options: ReplyQuote


Subject
Views
Written By
Posted
Re: incorrect char() string for bigint column
840
August 07, 2011 07:36PM


Sorry, you can't reply to this topic. It has been closed.

Content reproduced on this site is the property of the respective copyright holders. It is not reviewed in advance by Oracle and does not necessarily represent the opinion of Oracle or any other party.