You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+8-8Lines changed: 8 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -47,14 +47,19 @@ Please feel free to reach out to tyler `<at>` clickhouse `<dot>` com.
47
47
You can also peruse [ClickHouse Events](https://clickhouse.com/company/news-events) for a list of all upcoming trainings, meetups, speaking engagements, etc.
48
48
49
49
Upcoming meetups
50
-
*[Jakarta Meetup with AWS](https://www.meetup.com/clickhouse-indonesia-user-group/events/306973747/) - April 22, 2025
51
-
*[Denver Meetup](https://www.meetup.com/clickhouse-denver-user-group/events/306934991/) - April 23, 2025
52
50
*[Austin Meetup](https://www.meetup.com/clickhouse-austin-user-group/events/307289908) - May 13, 2025
53
51
*[London Meetup](https://www.meetup.com/clickhouse-london-user-group/events/306047172/) - May 14, 2025
54
52
*[Istanbul Meetup](https://www.meetup.com/clickhouse-turkiye-meetup-group/events/306978337/) - May 15, 2025
55
53
*[Shenzhen Meetup](https://www.huodongxing.com/event/7803892350511) - May 17, 2025
54
+
*[Seattle Meetup](https://www.meetup.com/clickhouse-seattle-user-group/events/307622716/) - May 20, 2025
55
+
*[Washington DC Meetup](https://www.meetup.com/clickhouse-dc-user-group/events/307622954/) - June 12, 2025
56
+
*[Atlanta Meetup](https://www.meetup.com/clickhouse-atlanta-meetup-group/events/307627590/) - July 8, 2025
57
+
*[New York Meetup](https://www.meetup.com/clickhouse-new-york-user-group/events/307627675/) - July 15, 2025
58
+
56
59
57
60
Recent meetups
61
+
*[Denver Meetup](https://www.meetup.com/clickhouse-denver-user-group/events/306934991/) - April 23, 2025
62
+
*[Jakarta Meetup with AWS](https://www.meetup.com/clickhouse-indonesia-user-group/events/306973747/) - April 22, 2025
58
63
*[Kuala Lumper Meetup with CNCF](https://www.meetup.com/clickhouse-malaysia-meetup-group/events/306697678/) - April 16, 2025
59
64
*[Tokyo Meetup with Confluent](https://www.meetup.com/clickhouse-tokyo-user-group/events/306832118/) - April 15, 2025
60
65
*[Ho Chi Minh Meetup with AWS & Infinite Lambda](https://www.meetup.com/clickhouse-vietnam-meetup-group/events/306810105/) - April 12, 2025
@@ -73,12 +78,7 @@ Recent meetups
73
78
*[Seattle Meetup](https://www.meetup.com/clickhouse-seattle-user-group/events/305916325) - March 5, 2025
74
79
*[Paris Meetup](https://www.meetup.com/clickhouse-france-user-group/events/305792997) - March 4, 2025
75
80
*[Shanghai Meetup](https://www.huodongxing.com/event/3794544969111?td=3894807410019) - March 1, 2025
76
-
*[Singapore Meetup](https://www.meetup.com/clickhouse-singapore-meetup-group/events/305917892/) - Feb 25, 2025
77
-
*[Los Angeles Meetup (with DevOpsDays)](https://www.meetup.com/clickhouse-los-angeles-user-group/events/305952193) - Feb 20, 2025
78
-
*[Wellington Meetup](https://www.meetup.com/clickhouse-wellington-user-group/events/305666164/) - Feb 20, 2025
79
-
*[Auckland Meetup](https://www.meetup.com/clickhouse-auckland-meetup-group/events/305666103/) - Feb 19, 2025
80
-
*[Dubai Meetup](https://www.meetup.com/clickhouse-dubai-meetup-group/events/303096989/) - Feb 10, 2025
81
-
*[Bangalore Meetup](https://www.meetup.com/clickhouse-bangalore-user-group/events/305497951/) - Feb 8, 2025
description: 'Documentation for ALTER TABLE ... MODIFY COMMENT'
3
-
sidebar_label: 'COMMENT'
2
+
description: 'Documentation for ALTER TABLE ... MODIFY COMMENT which allow
3
+
adding, modifying, or removing table comments'
4
+
sidebar_label: 'ALTER TABLE ... MODIFY COMMENT'
4
5
sidebar_position: 51
5
6
slug: /sql-reference/statements/alter/comment
6
7
title: 'ALTER TABLE ... MODIFY COMMENT'
8
+
keywords: ['ALTER TABLE', 'MODIFY COMMENT']
7
9
---
8
10
9
11
# ALTER TABLE ... MODIFY COMMENT
10
12
11
-
Adds, modifies, or removes comment to the table, regardless if it was set before or not. Comment change is reflected in both [system.tables](../../../operations/system-tables/tables.md) and `SHOW CREATE TABLE` query.
13
+
Adds, modifies, or removes a table comment, regardless of whether it was set
14
+
before or not. The comment change is reflected in both [`system.tables`](../../../operations/system-tables/tables.md)
Adds, modifies, or removes comment to the database, regardless of whether it was set before. Comment change is reflected in both [system.databases](/operations/system-tables/databases.md) and `SHOW CREATE DATABASE` query.
13
+
Adds, modifies, or removes a database comment, regardless of whether it was set
14
+
before or not. The comment change is reflected in both [`system.databases`](/operations/system-tables/databases.md)
Copy file name to clipboardExpand all lines: docs/en/sql-reference/statements/select/all.md
+5-3Lines changed: 5 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,15 +7,17 @@ title: 'ALL Clause'
7
7
8
8
# ALL Clause
9
9
10
-
If there are multiple matching rows in the table, then `ALL` returns all of them. `SELECT ALL` is identical to `SELECT` without `DISTINCT`. If both `ALL` and `DISTINCT` specified, exception will be thrown.
10
+
If there are multiple matching rows in a table, then `ALL` returns all of them. `SELECT ALL` is identical to `SELECT` without `DISTINCT`. If both `ALL` and `DISTINCT`are specified, then an exception will be thrown.
11
11
12
+
`ALL` can be specified inside aggregate functions, although it has no practical effect on the query's result.
12
13
13
-
`ALL` can also be specified inside aggregate function with the same effect(noop), for instance:
0 commit comments