Converts a JSON value to INT64 using flexible, lax type conversion.
INT64Diperbarui: 13 Jun 2026LAX_INT64(json_expression)JSON value to convert
1 SELECT 2 LAX_INT64(JSON '42') as from_int, 3 LAX_INT64(JSON '3.9') as from_float, 4 LAX_INT64(JSON '"100"') as from_str;
Flexibly converts various JSON values to integer.
| from_int | from_float | from_str |
|---|---|---|
| 42 | 3 | 100 |
Sudah paham LAX_INT64? Latih langsung di browser
Latihan interaktif, langsung di browser.