Converts a JSON value to FLOAT64 using flexible, lax type conversion.
FLOAT64Diperbarui: 13 Jun 2026LAX_FLOAT64(json_expression)JSON value to convert
1 SELECT 2 LAX_FLOAT64(JSON '3.14') as from_num, 3 LAX_FLOAT64(JSON '"3.14"') as from_str, 4 LAX_FLOAT64(JSON 'true') as from_bool;
Flexibly converts various JSON values to float.
| from_num | from_str | from_bool |
|---|---|---|
| 3.14 | 3.14 | 1.0 |
Sudah paham LAX_FLOAT64? Latih langsung di browser
Latihan interaktif, langsung di browser.