📜  sql order by - SQL 代码示例

📅  最后修改于: 2022-03-11 15:04:54.994000             🧑  作者: Mango

代码示例5
SELECT DISTINCT column, AGG_FUNC(column_or_expression), …
FROM mytable
    JOIN another_table
      ON mytable.column = another_table.column
    WHERE constraint_expression
    GROUP BY column
    HAVING constraint_expression
    ORDER BY column ASC/DESC
    LIMIT count OFFSET COUNT;