

# TO\$1DOUBLE\$1COLUMN
<a name="recipe-actions.TO_DOUBLE_COLUMN"></a>

Changes the data type of an existing column to DOUBLE.

**Note**  
We recommend using CHANGE\$1DATA\$1TYPE recipe action rather than TO\$1DOUBLE\$1COLUMN.

**Parameters**
+ `sourceColumn` – The name of an existing column.
+ `columnDataType` – A value that must be `number`.

**Example**  
  

```
{
    "RecipeAction": {
        "Operation": "TO_DOUBLE_COLUMN",
        "Parameters": {
            "columnDataType": "number",
            "sourceColumn": "hourly_rate"
        }
    }
}
```