Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm trying to do this:

SELECT CAST(columnName AS INT), moreColumns, etc
FROM myTable
WHERE ...

I've looked at the help FAQs here: http://dev.mysql.com/doc/refman/5.0/en/cast-functions.html , it says I can do it like CAST(val AS TYPE), but it's not working.

Trying to convert a decimal to int, real value is 223.00 and I want 223

share|improve this question
The warning of casting is because you are supplying a string, can you confirm that? – ajreal Dec 16 '11 at 16:33

4 Answers

up vote 6 down vote accepted

You could try the FLOOR function like this:

SELECT FLOOR(columnName), moreColumns, etc 
FROM myTable 
WHERE ... 

You could also try the FORMAT function, provided you know the decimal places can be omitted:

SELECT FORMAT(columnName,0), moreColumns, etc 
FROM myTable 
WHERE ... 

You could combine the two functions

SELECT FORMAT(FLOOR(columnName),0), moreColumns, etc 
FROM myTable 
WHERE ... 
share|improve this answer
You realise that you shouldn't be dealing with formatting in your SQL code right? – Tom Medley Dec 16 '11 at 16:28
Nice work, +1. Format works for my situation fine, but I'm still wondering if anyone can do it with CAST – Gerve Dec 16 '11 at 16:29
@TomMedley: Yeah I wouldn't if I was using PHP aswell, but this is just for some triggers and functions – Gerve Dec 16 '11 at 16:30

From the article you linked to:

The type can be one of the following values:

BINARY[(N)]

CHAR[(N)]

DATE

DATETIME

DECIMAL[(M[,D])]

SIGNED [INTEGER]

TIME

UNSIGNED [INTEGER]

Try SIGNED instead of INT

share|improve this answer
Thanks but I get another error now: Error code 1292, SQL state 22001: Data truncation: Truncated incorrect INTEGER value: '558.00' – Gerve Dec 16 '11 at 16:24

A more optimized way in for this purpose:

SELECT columnName DIV 1 AS columnName, moreColumns, etc
FROM myTable
WHERE ...

Using DIV 1 is a huge speed improvement over FLOOR, not to mention string based functions like FORMAT

share|improve this answer

Try cast (columnName as unsigned)

unsigned is positive value only

If you want to include negative value, then cast (columnName as signed),
The difference between sign (negative include) and unsigned (twice the size of sign, but non-negative)

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.