Remove-Twitter Cmdlet
Deletes Twitter data.
Syntax
Remove-Twitter [parameters]
Remarks
The Remove-Twitter cmdlet allows you to use a syntax similar to SQL DELETE statements to delete Twitter data.
$conn = Connect-Twitter Remove-Twitter -Connection $conn -Table "Tweets" -Id "123456789"The Where parameter can also be used to specify the primary key:
Remove-Twitter -Connection $conn -Table "exTablePowershell;" -Where "Id = 123456789"The primary key can also be passed to the cmdlet along the pipeline:
Select-Twitter -Connection $conn -Table Tweets -Where "From_User_Name = 'twitter'" | Remove-Twitter