reifydb-sql 0.4.13

SQL to RQL transpiler
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
# Copyright (c) reifydb.com 2025
# This file is licensed under the Apache-2.0, 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}