2007-12-25
37 reads
2007-12-25
37 reads
A quick workaround from a longtime community member that helps you prevent the LF/CR from being lost if you copy scripts from the code tags in your posts.
2007-11-27
1,306 reads
SQLServerCentral.com is always looking for ways that we can provide you with better, more useful content to help you learn about SQL Server. We've got a new idea and we're looking for feedback.
2007-11-12
396 reads
We reached the half million member milestone last week and had a contest. Read on to see the winners.
2007-10-08
556 reads
We crossed the 500,000 member mark last week and we're looking to give away some prizes!
2007-10-02
1,916 reads
A few proposed changes to the newsletter. Read about them and give us some feedback on what you think.
2007-09-27
591 reads
2007-09-26
529 reads
With the new codebase in place, RSS is pervasive throughout the site. Get a few hints here on how this works.
2007-09-25
2,253 reads
Lots of changes to the site, see how to work with some of them.
2007-09-24
1,958 reads
The third evolution in the history of SQLServerCentral.com is now out and available. Read all about the changes we've gone through.
2007-09-24
1,458 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