CTEs can be used for SELECT , INSERT , UPDATE or DELETE . Example (from the PostgreSQL docs): WITH regional_sales AS ( SELECT region, SUM(amount) AS total_sales ...
確定! 回上一頁