| --- |
| { |
| "title": "CAST", |
| "language": "en" |
| } |
| --- |
| |
| <!-- |
| Licensed to the Apache Software Foundation (ASF) under one |
| or more contributor license agreements. See the NOTICE file |
| distributed with this work for additional information |
| regarding copyright ownership. The ASF licenses this file |
| to you under the Apache License, Version 2.0 (the |
| "License"); you may not use this file except in compliance |
| with the License. You may obtain a copy of the License at |
| |
| http://www.apache.org/licenses/LICENSE-2.0 |
| |
| Unless required by applicable law or agreed to in writing, |
| software distributed under the License is distributed on an |
| "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY |
| KIND, either express or implied. See the License for the |
| specific language governing permissions and limitations |
| under the License. |
| --> |
| |
| ## CAST |
| ### Description |
| |
| |
| ``` |
| cast (input as type) |
| ``` |
| |
| #### BIGINT type |
| |
| #### Syntax (BIGINT) |
| |
| ``` cast (input as BIGINT) ``` |
| |
| |
| Converts input to the specified type |
| |
| |
| Converting the current column input to BIGINT type |
| |
| ### example |
| |
| 1. Turn constant, or a column in a table |
| |
| ``` |
| mysql> select cast (1 as BIGINT); |
| +-------------------+ |
| | CAST(1 AS BIGINT) | |
| +-------------------+ |
| | 1 | |
| +-------------------+ |
| ``` |
| |
| 2. Transferred raw data |
| |
| ``` |
| curl --location-trusted -u root: -T ~/user_data/bigint -H "columns: tmp_k1, k1=cast(tmp_k1 as BIGINT)" http://host:port/api/test/bigint/_stream_load |
| ``` |
| |
| * Note: In the import, because the original type is String, when the original data with floating point value is cast, the data will be converted to NULL, such as 12.0. Doris is currently not truncating raw data. * |
| |
| If you want to force this type of raw data cast to int. Look at the following words: |
| |
| ``` |
| curl --location-trusted -u root: -T ~/user_data/bigint -H "columns: tmp_k1, k1=cast(cast(tmp_k1 as DOUBLE) as BIGINT)" http://host:port/api/test/bigint/_stream_load |
| |
| mysql> select cast(cast ("11.2" as double) as bigint); |
| +----------------------------------------+ |
| | CAST(CAST('11.2' AS DOUBLE) AS BIGINT) | |
| +----------------------------------------+ |
| | 11 | |
| +----------------------------------------+ |
| 1 row in set (0.00 sec) |
| ``` |
| ### keywords |
| CAST |