The SQLServerCentral.com Party
Get the details, including the room (607) for our party in Denver on September 18th, 2007. And by the way, there's a conference immediately following.
2007-09-04
928 reads
Get the details, including the room (607) for our party in Denver on September 18th, 2007. And by the way, there's a conference immediately following.
2007-09-04
928 reads
Here are the winners of our raffle and we should be sending out prizes soon. A thanks as well from Katie's father to all of you.
2007-08-20
1,116 reads
Not the ones you think, but all good reasons to come to Denver. Read on for a bit of humor and find out how to come to the SQLServerCentral.com party!
2007-08-24 (first published: 2007-08-08)
2,454 reads
It's not a string manipulation article in T-SQL, but it is SQL Server related. Check out what Steve Jones has in store for the PASS 2007 Summit for the SQLServerCentral.com community..
2007-07-26
1,506 reads
2007-07-10
1,032 reads
Congratulations to two new members of the SQLServerCentral.com 3000 club: Jeff Moden and Noeld.
2007-07-03
1,441 reads
Get a free copy of Two Minute SQL Server Stumpers, Vol. 1 from End to End Training.
2007-06-29
2,515 reads
It's coming to Denver in September and there's still time to save. And attend the SQLServerCentral.com Reception.
2007-06-20
1,024 reads
We're opening the newsletter up to advertising for everyone. Get the news here.
2007-04-11
1,196 reads
A short look and some notes from the SQLServerCentral.com site migration.
2007-03-20
2,370 reads
By Steve Jones
Redgate is a for-profit company. We look to make money by building and selling...
I’ve uploaded the slides for my Techorama session Microsoft Fabric for Dummies and my...
If you've ever loaded a 2 GB CSV into pandas just to run a...
Comments posted to this topic are about the item Even When You Know What...
Comments posted to this topic are about the item The New Software Team
Comments posted to this topic are about the item Database Mail in SQL Server...
We create the following table and then insert some records in it:
create table t1 ( id int primary key, category char(1) not null, product varchar(50) ); insert into t1 values (1, 'A', 'Product 1'), (2, 'A', 'Product 2'), (3, 'A', 'Product 3'), (4, 'B', 'Product 4'), (5, 'B', 'Product 5');What happens if we execute the following query in both Sql Server and PostgreSQL?
select id,
category,
string_agg(product, ';')
over (partition by category order by id
rows between unbounded preceding and unbounded following) as stragg
from t1; See possible answers