2019-11-15
661 reads
2019-11-15
661 reads
2019-11-12
891 reads
2019-11-05
720 reads
2019-10-29
826 reads
2019-10-22
766 reads
2019-10-15
778 reads
2019-10-08
715 reads
2019-10-01
935 reads
Although computed columns are from the beginning of SQL Server, not everyone knows how to use them. This article will help you better understand how it works.
2019-02-12
11,985 reads
2015-04-16
1,664 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;