What does SQL NULL mean and how to handle NULL values
This tip will help you understand what NULL means and different ways to handle NULL values when working with SQL Server data.
2024-07-08
This tip will help you understand what NULL means and different ways to handle NULL values when working with SQL Server data.
2024-07-08
In SQL and relational databases, NULL values are an important part of managing data and information stored in SQL tables. A NULL value is used as a placeholder for missing values or values that are unknown in a database column or cell.
2023-09-11
2023-02-17
589 reads
2023-02-06 (first published: 2023-02-03)
503 reads
2023-02-06 (first published: 2023-01-23)
696 reads
Missing data is a difficult and common problem to solve. In this article, Joe Celko explains several approaches to deleting or replacing missing data.
2018-07-04
2,461 reads
2017-09-11
1,282 reads
2016-09-26
1,428 reads
2016-02-17
1,680 reads
2015-05-01
1,789 reads
By Ed Elliott
All Spark Connect Posts I recently published the latest version of the Spark Connect Dotnet...
By Steve Jones
opia – n. the ambiguous intensity of eye contact The entry for this says...
By Steve Jones
This was actually a cool tip I saw internally from one of the product...
Hi All, I am currently testing the Table Partitioning to implement in SQL server...
Comments posted to this topic are about the item STRING_AGG's behavior
Comments posted to this topic are about the item The Role of Databases in...
CREATE TABLE t0 ( id INT PRIMARY KEY , field1 VARCHAR(1000) , field2 VARCHAR(MAX)); INSERT INTO t0 SELECT gs.value , REPLICATE ('X', 1000) , REPLICATE ('Y', 1000) FROM generate_series(1, 10, 1) gs; GO
select STRING_AGG(field1, ';') within group (order by id) from t0;
select STRING_AGG(field2, ';') within group (order by id) from t0;