|
7 | 7 | [](LICENSE) |
8 | 8 | [](tests/) |
9 | 9 |
|
10 | | -Write `INSERT`, `SEARCH`, `SCROLL`, `RECOMMEND`, `DELETE`, and `CREATE COLLECTION` statements instead of Python SDK calls. Supports hybrid dense+sparse vector search, cross-encoder reranking, quantization (scalar, turbo, binary, product), SQL-style `WHERE` filters, script execution, and collection dump/restore. |
| 10 | +Write `INSERT`, `SELECT`, `SEARCH`, `SCROLL`, `RECOMMEND`, `DELETE`, and `CREATE COLLECTION` statements instead of Python SDK calls. Supports hybrid dense+sparse vector search, cross-encoder reranking, quantization (scalar, turbo, binary, product), SQL-style `WHERE` filters, script execution, and collection dump/restore. |
11 | 11 |
|
12 | 12 | ``` |
13 | 13 | qql> INSERT INTO COLLECTION notes VALUES {'text': 'Qdrant is a vector database', 'author': 'alice', 'year': 2024} |
@@ -82,7 +82,7 @@ Full documentation lives in the [`docs/`](docs/) folder and at **[pavanjava.gith |
82 | 82 | |---|---| |
83 | 83 | | [Getting Started](docs/getting-started.md) | Installation, connecting, first queries | |
84 | 84 | | [INSERT / INSERT BULK](docs/insert.md) | Adding documents, batch inserts, payload types | |
85 | | -| [SEARCH / SCROLL / RECOMMEND / Hybrid / RERANK](docs/search.md) | Semantic search, pagination, hybrid, reranking, recommendations | |
| 85 | +| [SEARCH / SELECT / SCROLL / RECOMMEND / Hybrid / RERANK](docs/search.md) | Semantic search, point retrieval, pagination, hybrid, reranking, recommendations | |
86 | 86 | | [WHERE Filters](docs/filters.md) | Full SQL-style filter operators | |
87 | 87 | | [Collections & Quantization](docs/collections.md) | CREATE, DROP, QUANTIZE (scalar/turbo/binary/product), CREATE INDEX | |
88 | 88 | | [Scripts: EXECUTE / DUMP](docs/scripts.md) | Script files, collection backup/restore | |
@@ -113,6 +113,9 @@ SCROLL FROM articles AFTER 'cursor-id' LIMIT 50 |
113 | 113 | -- Recommend |
114 | 114 | RECOMMEND FROM articles POSITIVE IDS (1001, 1002) LIMIT 5 |
115 | 115 |
|
| 116 | +-- Select (retrieve a point by ID) |
| 117 | +SELECT * FROM articles WHERE id = '3f2e1a4b-...' |
| 118 | + |
116 | 119 | -- Collections |
117 | 120 | CREATE COLLECTION articles |
118 | 121 | CREATE COLLECTION articles HYBRID |
|
0 commit comments