JSONExtractText returns SQL to extract a text value from a JSON column. SQLite: json_extract(col, '$.key') PostgreSQL: col->>'key'
(column, key string)
| 31 | // SQLite: json_extract(col, '$.key') |
| 32 | // PostgreSQL: col->>'key' |
| 33 | JSONExtractText(column, key string) string |
| 34 | |
| 35 | // JSONExtractPath returns SQL to extract a value at a dotted path from a JSON column. |
| 36 | // SQLite: json_extract(col, '$.path.to.key') |
no outgoing calls
no test coverage detected