DELETE

Description

Statement use to delete rows of a table.

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

Grammar Syntax

[ WITH [ RECURSIVE ] with_query [, ...] ]
DELETE FROM [ONLY] table [[AS] alias]
      [USING usinglist]
      [WHERE condition | WHERE CURRENT OF cursor_name]
      [RETURNING * | output_expression [[AS] output_name] [, …]]

For more information about this statement check the PostgreSQL DELETE statement

Last updated