SQLite Forum

Proposed JSON enhancements.
Login
Can you attribute the parameters?

```
SELECT *
FROM shirts 
WHERE details[?1]['color'] = ?2
```

Or can you use them in the selection:

```
SELECT details[?1]['color']
FROM shirts
```