The Remove-AzStorageTable cmdlet removes one or more storage tables from a storage account in Azure.
Examples
Example 1: Remove a table
Remove-AzStorageTable -Name "TableABC"
This command removes a table.
Example 2: Remove several tables
Get-AzStorageTable table* | Remove-AzStorageTable
This example uses a wildcard character with the Name parameter to get all tables that match the pattern table and then passes the result on the pipeline to remove the tables.
Parameters
-Confirm
Prompts you for confirmation before running the cmdlet.
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable,
-InformationAction, -InformationVariable, -OutBuffer, -OutVariable, -PipelineVariable,
-ProgressAction, -Verbose, -WarningAction, and -WarningVariable. For more information, see
about_CommonParameters.
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.