I'm new to MySql. So I don't know many things like Casting of data types. How can I convert bool to int in MySql. And also how can I convert decimal to Int in MySql.
Asked
Active
Viewed 1.2k times
1 Answers
14
Typecasting boolean to integer:
SELECT CAST(1=1 AS SIGNED INTEGER); /* 1 */
Same for decimal and strings:
SELECT CAST("1.23" AS SIGNED INTEGER); /* 1 */
BenMorel
- 31,815
- 47
- 169
- 296