From 738e7baeb0e6a7ae3a9eaf955f50aef2173f09b4 Mon Sep 17 00:00:00 2001 From: arushi-firebolt <146018150+arushi-firebolt@users.noreply.github.com> Date: Wed, 11 Oct 2023 10:37:52 -0700 Subject: [PATCH] Update working-with-partitions.md changing SQL back to sql --- docs/working-with-partitions.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/working-with-partitions.md b/docs/working-with-partitions.md index b95648b..983ade5 100644 --- a/docs/working-with-partitions.md +++ b/docs/working-with-partitions.md @@ -123,7 +123,8 @@ PARTITION BY EXTRACT(YEAR FROM transaction_date), EXTRACT(MONTH FROM transaction The example below drops the partition for records where `transaction_date` is in the month of April 2022. The year and month are specified as integers in the command. -```SQL +```sql + ALTER TABLE fct_tbl_transactions DROP PARTITION 2022,04; ```