DELETE
statement removes rows that fulfill the WHERE
clause criteria.
table_name
table (that belongs to the integration_name
integration) wherever the column_name
column value is equal to column_value_to_be_removed
.
And here is another way to filter the rows using a subquery:
table_name
table (that belongs to the integration_name
integration) wherever the column_name
column value is equal to one of the values returned by the subquery.