# 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}