在SSMS中,我有一个源表和一个目标表。在源表中,有一列通常包含十进制数,但是,当输入值的用户输入3,14而不是3.14或" unknown"等时,它偶尔会包含文本。 (在源表中,技术上允许用户输入他们想要的任何内容。此规则不能更改。)
我有一个存储过程,它从源表中选择一些列,包括相关列,然后将信息输入数据仓库,以便我们对其进行分析。
我的目标是用空格或-1替换/转换原始列中的varchar值,或者将其他一些占位符替换为null。
我被告知创建一个可以处理这个问题的自定义函数,但我不知道如何做到这一点,我在网上发现的文档在这一点上已经超出了我的想法。
以下是表格:
create table SourceTable (
id INT,
Column1 DATE,
Column2 VARCHAR(50)
);
insert into SourceTable (id, Column1, Column2) values (1, '5/8/2017', '533');
insert into SourceTable (id, Column1, Column2) values (2, '10/1/2016', '988');
insert into SourceTable (id, Column1, Column2) values (3, '2/8/2016', '411');
insert into SourceTable (id, Column1, Column2) values (4, '2/29/2016', '491');
insert into SourceTable (id, Column1, Column2) values (5, '3/15/2016', '500');
insert into SourceTable (id, Column1, Column2) values (6, '4/2/2017', '677');
insert into SourceTable (id, Column1, Column2) values (7, '5/4/2016', '56/58');
insert into SourceTable (id, Column1, Column2) values (8, '8/24/2016', 'Unknown');
insert into SourceTable (id, Column1, Column2) values (9, '2/2/2017', '');
insert into SourceTable (id, Column1, Column2) values (10, '1/7/2017', '410');
create table Destination (
id INT,
Column1 DATE,
Column2 float
);
如何将SourceTable.Column2中的数字输入Destination.Column2(如果可能,最好使用自定义函数)?
答案 0 :(得分:1)
如果try_cast(Column2 as float)
无法转换为null
数据类型,则可以使用float
。
如果您想按照建议使用占位符值替换null
,可以使用isnull()
或coalesce()
insert into destination (id, column1, column2)
select id, column1, coalesce(try_cast(column2 as float),-1)
from sourcetable
rextester演示:http://rextester.com/FJTZ50419
返回:
+----+------------+---------+
| id | column1 | column2 |
+----+------------+---------+
| 1 | 2017-05-08 | 533 |
| 2 | 2016-10-01 | 988 |
| 3 | 2016-02-08 | 411 |
| 4 | 2016-02-29 | 491 |
| 5 | 2016-03-15 | 500 |
| 6 | 2017-04-02 | 677 |
| 7 | 2016-05-04 | -1 |
| 8 | 2016-08-24 | -1 |
| 9 | 2017-02-02 | 0 |
| 10 | 2017-01-07 | 410 |
+----+------------+---------+
在Sql Server 2012及更高版本中:当转换失败而不是错误时,每个都会返回null
。
答案 1 :(得分:1)
试一下
Create FUNCTION dbo.FindNoneNumeric
(@FloatString VARCHAR(8000))
RETURNS INT
AS
BEGIN
Declare @Status int
SET @Status =
(SELECT CASE
WHEN @FloatString NOT LIKE '%[^0-9]%'
THEN 1
ELSE 0
END)
return @Status
END
插入声明
insert into Destination(ID,Column1,Column2)
Select ID,Column1,Column2 from SourceTable
where dbo.FindNoneNumeric(SourceTable.Column2)=1
答案 2 :(得分:0)
在这种情况下,您可以使用ISNUMERIC
,其中用户使用各种数字类型。
如果值是数字,则返回1,否则返回0。你应该注意1,303。如果您知道用户意味着1.303那么您可以使用试用版,但如果它实际上是一千...我不知道如何保证您的假设。
答案 3 :(得分:0)
您可以使用下面的try_convert或case
Insert into Destination
select Id, Column1, Case when ISNUMERIC(Replace(column2,',','.')) = 1 then convert(float, Replace(column2,',','.')) else -1 end
from SourceTable