2

isnumeric() 関数が 1 を返す場合は文字列の数値を、0 を返す場合は NULL を取得しようとしています。以下のコードのようなものを使用して、(1 ではなく) 数値を返すことは可能ですか?

select '14-154877-0' as actual_string, replace('14-154877-0', '-', '') as numeric_value, nullif(isnumeric(replace('14-154877-0', '-', '')), 0) as numeric_value_or_null /* Here I wold like to return the numeric value instead of 1 */

select 'some text' as actual_string, replace('some text', '-', '') as numeric_value, nullif(isnumeric(replace('some text', '-', '')), 0) as numeric_value_or_null /* OK */

サンプルデータ

挿入ステートメントは、Excel 連結関数の結果です。

提案どおり、case 式と try_convert() (MSSQL 2012 用) 関数を使用しましたが、正常に動作しました。この種の挿入を行うより良い方法はありますか?

if object_id('tempdb..#temp_table') is not null
    begin
        drop table #temp_table;
    end;

create table #temp_table (
        int_column int,
        varchar_column varchar(50)
    );

insert into #temp_table (int_column, varchar_column) values (case when isnumeric(replace('111----111', '-', '')) = 1 then replace('111----111', '-', '') end, 'string data 1');
insert into #temp_table (int_column, varchar_column) values (case when isnumeric(replace('text', '-', '')) = 1 then replace('text', '-', '') end, 'string data 2');
insert into #temp_table (int_column, varchar_column) values (try_convert(int, replace('258--', '-', '')), 'string data 3');
insert into #temp_table (int_column, varchar_column) values (try_convert(int, replace('123', '-', '')), 'string data 4');

select * from #temp_table;

/*
    |   int_column  |   varchar_column  |
    |   111111      |   string data 1   |
    |   NULL        |   string data 2   |
    |   258         |   string data 3   |
    |   123         |   string data 4   |
*/
4

4 に答える 4

4

多分:

SELECT value as actual_string
, replace(value, '-', '') as numeric_value
, CASE ISNUMERIC(replace(value, '-', ''))
  WHEN 1 THEN CAST(replace(value, '-', '') AS FLOAT)
  ELSE NULL END AS numeric_value_or_null
FROM TableName

中をいじる

于 2012-11-14T13:03:48.507 に答える
3

あなたが2012年にいる場合(あなたのデータに適切なデータ型を選択してください、私は仮定しましたINT

SELECT TRY_CONVERT(INT, replace(value, '-', ''))
于 2012-11-14T13:05:22.663 に答える
1
select '14-154877-0' as actual_string, replace('14-154877-0', '-', '') as numeric_value, case when isnumeric(replace('14-154877-0', '-', ''))=1 then Cast(replace('14-154877-0', '-', '') as Numeric) else null end as numeric_value_or_null /* Here I wold like to return the numeric value instead of 1 */
于 2012-11-14T13:02:20.400 に答える
1

caseステートメントを使用することの何が問題になっていますか? 例えば

declare @text varchar(50)
set @text = '747467'

select 
    case
        when isnumeric(@text) <> 1 then null
        else cast(@text as decimal)
    end as numeric_or_null
于 2012-11-14T13:00:24.750 に答える