Skip to main content

Posts

Showing posts with the label drop records by partitions oracle

Select/drop records by partitions

Select/drop records by partitions   To select records in a table using partitions, use below query. SELECT * FROM <tableName> PARTITION (<partitionName>); To drop records in a table using partitions, use below query. ALTER   TABLE   <tableName>   DROP   PARTITION <partitionName>;