Four New Zealand Cities are Final Stops on 30 Day Speaking Tour
After making seven presentations in Australia, I headed to New Zealand where I made four presentations in four cities, on...
2009-10-27
485 reads
After making seven presentations in Australia, I headed to New Zealand where I made four presentations in four cities, on...
2009-10-27
485 reads
While the SQLServerCentral.com forums have always been a popular way to get your SQL Server questions answered, and to participate...
2009-10-27
822 reads
I first met Simon Galbraith, one of the co-owners of Red Gate Software at PASS in 2002, when they had...
2009-10-24
408 reads
Rodney Landrum, SQL Server MVP, is the author of the new book, The SQL Server Tacklebox: Essential Tools and Scripts...
2009-10-23
583 reads
On Tuesday, October 13, I spoke at the Sydney SQL Server Users Group, presenting on “How to Get the Most...
2009-10-23
498 reads
I spoke at the Melbourne SQL Server Users Group on Monday, October 12, 2009. The group meets at lunch time...
2009-10-19
440 reads
Often, when I give presentations on DBA best practices, I make the obvious point that databases need to be regularly...
2009-10-16
490 reads
Whether you like it or not, as a SQL Server DBA or Developer, you will eventually have to learn about...
2009-10-16
555 reads
The fourth annual SQL Down Under Code Camp was held at Charles Sturt University in Wagga Wagga, Australia this past...
2009-10-14
381 reads
I often get questions in e-mails, or at user group meetings, for advice on writing T-SQL database maintenance scripts. There...
2009-10-14
4,307 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