DELETE

Description

Statement use to delete rows of a table.

Click here to navigate to the Redshift documentation page for this syntax.

Grammar Syntax

[ WITH [RECURSIVE] common_table_expression [, common_table_expression , ...] ]
DELETE [ FROM ] table_name
    [ {USING } table_name, ... ]
    [ WHERE condition ]

For more information about this statement check the PostgreSQL DELETE statement

Last updated