mysql转换整数_在MySQL中将文本列转换为整数

bd96500e110b49cbb3cd949968f18be7.png

I'm trying to create a cleaned-up table that replaces a varchar(50) field with an integer. The original field has occasional text values that I'd like to convert to 0 or null values.

I can do this in a select statement just fine, but get an error when trying to create my table.

Below is a minimal example that uses strings:

/* This works */

DROP TABLE IF EXISTS mytest;

CREATE TABLE mytest

AS

SELECT convert("123", unsigned) AS mynum;

/* This works, returning a row of 0 */

SELECT convert("TEST", unsigned) AS mynum;

/* But this fails, with: Truncated incorrect INTEGER value: 'TEST'*/

DROP TABLE IF EXISTS mytest;

CREATE TABLE mytest

AS

SELECT convert("TEST", unsigned) AS mynum;`

What is wrong with the above, and is there a better way to accomplish what I want? Thanks for the help.

解决方案

I'd use a case statement for it and also switch over to using CAST instead of convert so you'll get failures instead of implicit conversions.

CREATE TABLE mytest(myVarchar varchar(10));

INSERT mytest VALUES ('123'),('TEST');

SELECT CASE

WHEN myVarchar REGEXP '^[0-9]+$' THEN CAST(myVarchar,unsigned)

ELSE 0

END As mynum

FROM mytest;

I don't have a mysql instance handy to test this so hopefully I didn't goof any syntax errors.

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值