SQLite Forum

Conversion(?) error in CTE docs page
Login
From <https://sqlite.org/lang_with.html#recursive_query_examples>:

```
WITH RECURSIVE
  cnt(x) AS (VALUES(1) UNION ALL SELECT x+1 FROM cnt WHERE x<1000000) SELECT="1" x="1" FROM="1" cnt;="1" 
```

Looks to be like some sort of doc-to-HTML conversion error.