Having a Little Fun at SQL Server Central
Steve reminisces on some of the fun times he's had at SQL Server Central.
2026-02-27
89 reads
Steve reminisces on some of the fun times he's had at SQL Server Central.
2026-02-27
89 reads
A look back at SQL Server Central after 25 years from founder Brian Knight.
2026-02-20
1,446 reads
Steve talks about some of the charitable work at SQL Server Central.
2026-02-20
71 reads
This is part of a few memories from the founders of SQL Server Central, celebrating 25 years of operation this month. When we started SQL Server Central, our goal was to build a great resource that helped other people advance in their careers and also made some money. Our decisions in building the site were […]
2026-02-13
66 reads
2026-02-06
116 reads
2026-02-02
167 reads
Casino Night from SQL Server Central is coming back to the PASS Data Community Summit.
2024-09-11
416 reads
SQL Server Central is changing their policy to respond to the increased use of AI technologies.
2024-02-02
349 reads
We are adding a consent form to the SQL Server Central website to allow our cookies.
2024-01-10
1,400 reads
The SQL Server Central database servers are being upgraded on Thursday, Nov 2.
2023-11-01
659 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