Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update docs/source/user-guide/sql/aggregate_functions.md
Co-authored-by: Andrew Lamb <andrew@nerdnetworks.org>
  • Loading branch information
Adez017 and alamb authored Jul 29, 2025
commit f886f328ad18c7698924902a51f59f1bdc6412bf
2 changes: 1 addition & 1 deletion docs/source/user-guide/sql/aggregate_functions.md
Original file line number Diff line number Diff line change
Expand Up @@ -693,7 +693,7 @@ regr_count(expression_y, expression_x)
consider the following table:

```sql
> create table daily_metrics(int day, int user_signups) as values (1,100), (2,120), (3, NULL), (4,110), (5,NULL);
> create table daily_metrics(day int, user_signups int) as values (1,100), (2,120), (3, NULL), (4,110), (5,NULL);
> select * from daily_metrics;
+-----+---------------+
| day | user_signups |
Expand Down
Loading