Skip to content

Commit 3ec4dc3

Browse files
committed
Updates
1 parent 4bcbb2e commit 3ec4dc3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

articles/sql-data-warehouse/performance-tuning-ordered-cci.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ ORDER (Col_C, Col_B, Col_A)
5858

5959
```
6060

61-
Query #1 can have more performance benefit from ordered CCI than the other 3 queries.
61+
The performance of query 1 can benefit more from ordered CCI than the other 3 queries.
6262

6363
```sql
6464
-- Query #1:
@@ -67,7 +67,7 @@ SELECT * FROM T1 WHERE Col_C = 'c' AND Col_B = 'b' AND Col_A = 'a';
6767

6868
-- Query #2
6969

70-
SELECT * FROM T1 WHERE Col_B = 'b' AND Col_C = 'c';
70+
SELECT * FROM T1 WHERE Col_B = 'b' AND Col_C = 'c' AND Col_A = 'a';
7171

7272
-- Query #3
7373
SELECT * FROM T1 WHERE Col_B = 'b' AND Col_A = 'a';

0 commit comments

Comments
 (0)