From: Martijn Tonies Date: November 6 2006 11:34am Subject: Re: Convert hex to decimal? List-Archive: http://lists.mysql.com/mysql/203154 Message-Id: <011c01c70197$76278760$cd02a8c0@martijnws> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit > I have a table with a SMALLINT column that -- trough a mistake -- > contains values like 57, 13 etc. which in fact are 0x57 and 0x13 (i.e. > HEX numbers). > > How would I convert > > 13 ("false decimal") to 0x13 (Hex) and from there to 19 (decimal)? > > I tried my luck with UNHEX and CAST but I only got 0 or NULL back respectively. This seems to work: select cast(x'13' as unsigned) So treat the column as a string (or cast it like that) and use this cast. Martijn Tonies Database Workbench - development tool for MySQL, and more! Upscene Productions http://www.upscene.com My thoughts: http://blog.upscene.com/martijn/ Database development questions? Check the forum! http://www.databasedevelopmentforum.com