SigmaQL is compatible with SQL

The SELECT-CLUSTER pair is a natural extension of the SELECT keyword in SQL. In SQL, each attribute is implicitly considered as a different axis. The selection of the attribute's axis defines the default clusters as those sharing common attribute values. The following SigmaQL query is equivalent to an SQL query without the "CLUSTER *" clause.
SELECT     sname, status
CLUSTER    *
FROM       supplier
WHERE city = "Pittsburgh"