すべてのプロダクト
Search
ドキュメントセンター

MaxCompute:SHIFTRIGHT

最終更新日:Jan 17, 2025

値を特定の桁数 (>>) だけシフトします。 この関数は、MaxCompute V2.0の追加関数です。

構文

int shiftright(tinyint|smallint|int <number1>, int <number2>)
bigint shiftright(bigint <number1>, int <number2>)

パラメーター

  • number1: 必須です。 値は、TINYINT、SMALLINT、INT、またはBIGINT型です。

  • number2: 必須です。 値はINT型です。

戻り値

INTまたはBIGINT型の値が返されます。 戻り値は、次のルールによって異なります。

  • number1がTINYINT、SMALLINT、INT、またはBIGINTタイプでない場合、エラーが返されます。

  • number2がINT型でない場合、エラーが返されます。

  • number1またはnumber2の値がnullの場合、nullが返されます。

サンプルデータ

このセクションでは、関数の使用方法を理解するためのサンプルソースデータと例を示します。 このトピックでは、mf_math_fun_tという名前のテーブルが作成され、データがテーブルに挿入されます。 サンプル文:

create table if not exists mf_math_fun_t(
     int_data     int,
     bigint_data  bigint,
     double_data  double,
     decimal_data decimal,
     float_data   float,
     string_data  string
    );
insert into mf_math_fun_t values
(null, -10, 0.525, 0.525BD, cast(0.525 as float), '10'),
(-20, null, -0.1, -0.1BD, cast(-0.1 as float), '-10'),
(0, -1, null, 20.45BD, cast(-1 as float), '30'),
(-40, 4, 0.89, null, cast(0.89 as float), '-30'),
(5, -50, -1, -1BD, null, '50'),
(-60, 6, 1.5, 1.5BD, cast(1.5 as float), '-50'),
(-1, -70, -7.5, -7.5BD, cast(-7.5 as float),null ),
(-80, 1, -10.2, -10.2BD, cast(-10.2 as float), '-1' ),
(9, -90, 2.58, 2.58BD, cast(2.58 as float), '0'),
(-100, 10, -5.8, -5.8BD, cast(-5.8 as float), '-90');

mf_math_fun_tテーブルからデータを照会します。 例:

select * from mf_math_fun_t;
-- The following result is returned: 
+------------+-------------+-------------+--------------+------------+-------------+
| int_data   | bigint_data | double_data | decimal_data | float_data | string_data |
+------------+-------------+-------------+--------------+------------+-------------+
| NULL       | -10         | 0.525       | 0.525        | 0.525      | 10          |
| -20        | NULL        | -0.1        | -0.1         | -0.1       | -10         |
| 0          | -1          | NULL        | 20.45        | -1.0       | 30          |
| -40        | 4           | 0.89        | NULL         | 0.89       | -30         |
| 5          | -50         | -1.0        | -1           | NULL       | 50          |
| -60        | 6           | 1.5         | 1.5          | 1.5        | -50         |
| -1         | -70         | -7.5        | -7.5         | -7.5       | NULL        |
| -80        | 1           | -10.2       | -10.2        | -10.2      | -1          |
| 9          | -90         | 2.58        | 2.58         | 2.58       | 0           |
| -100       | 10          | -5.8        | -5.8         | -5.8       | -90         |
+------------+-------------+-------------+--------------+------------+-------------+

例: 静的データ

-- The return value is 1. The following statement shifts the binary value of 4 two places to the right (4>>2, 0100 shifted to 0001). 
select shiftright(4,2);
-- The return value is 4. The following statement shifts the binary value of 32 three places to the right (32>>3, 100000 shifted to 0100). 
select shiftright(32,3);
-- The return value is null. 
select shiftright(null,3);

例: テーブルデータ

サンプルデータに基づいて、int_data列とbigint_data列の番号を特定の桁数だけシフトします。 例:

-- Enable the MaxCompute V2.0 data type edition. Commit this command along with SQL statements. 
set odps.sql.type.system.odps2=true;
select shiftright(int_data, 1) as int_new, shiftright(bigint_data, 1) as bigint_new from mf_math_fun_t;

次の応答が返されます。

+---------+------------+
| int_new | bigint_new |
+---------+------------+
| NULL    | -5         |
| -10     | NULL       |
| 0       | -1         |
| -20     | 2          |
| 2       | -25        |
| -30     | 3          |
| -1      | -35        |
| -40     | 0          |
| 4       | -45        |
| -50     | 5          |
+---------+------------+

関連関数

SHIFTRIGHTは数学関数です。 データコンピューティングと変換に関連する関数の詳細については、数学関数.