Networking Dinner at the 2016 PASS Summit
Steve Jones & I are organizing our 7th annual networking dinner on Monday night, October 24th in Seattle. We’re changing the...
2016-10-06
502 reads
Steve Jones & I are organizing our 7th annual networking dinner on Monday night, October 24th in Seattle. We’re changing the...
2016-10-06
502 reads
We’ve been monitoring the weather all week, thinking that today was the day we had to decide. We didn’t want...
2016-10-05
421 reads
2016-09-02
1,218 reads
Today we have a guest editorial from Andy Warren as Steve is on vacation. Andy talks about a trip to Microsoft for the SQL Server 2016 launch.
2016-08-12
149 reads
Returning to the post about Making SQSaturday Sustainable (see also a follow post about addressing concerns) it mentioned two topics...
2016-08-05 (first published: 2016-07-30)
1,480 reads
This past week I attended a one hour facilitated group session that was a continuation of the Strengthfinders assessment. One...
2016-08-02
440 reads
In a post titled The Future of the BA Community PASS announced that there would be no Business Analytics conference...
2016-07-30
824 reads
Last week PASS published some new guidance for SQLSaturday that sets a 600 mile rule (has since been updated, still...
2016-07-28
1,340 reads
Last week Karla Landrum announced that she will be leaving her position as Community Evangelist later this year after five...
2016-07-22 (first published: 2016-07-17)
1,633 reads
Really late linking to it, Should I Stay or Go is about being more assertive about making the decision to...
2016-07-18
354 reads
I’ve been thinking a lot lately about what it actually takes to make an...
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...
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