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