reifydb-sql 0.6.0

SQL to RQL transpiler
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
# Copyright (c) reifydb.com 2026
# This file is licensed under the AGPL-3.0-or-later, see license.md file

# DISTINCT

transpile 'SELECT DISTINCT name FROM users'
---
FROM users DISTINCT {name}

transpile 'SELECT DISTINCT name, dept FROM users'
---
FROM users DISTINCT {name, dept}