The Future of the SQLSaturday Tools
Every year when many of the SQLSaturday event leaders meet at the Summit the topic of improvements to the tools...
2017-11-23 (first published: 2017-11-08)
2,089 reads
Every year when many of the SQLSaturday event leaders meet at the Summit the topic of improvements to the tools...
2017-11-23 (first published: 2017-11-08)
2,089 reads
Just a few notes:
Weather on Wed was great, ok on Thurs, cold on Fri. Have had worse years!Felt like I...
2017-11-08
433 reads
It’s on! Free registration at EventBrite.
I wrote last month about not being able to make it to Seattle on Monday...
2017-10-29
592 reads
Note: Published too soon, so lots of edits from the first version. Sorry for any confusion.
I had a question from...
2017-10-24 (first published: 2017-10-14)
1,238 reads
SQLSaturday is really three sites. The public facing one (www) plus one for event admins and one for HQ to...
2017-10-22
393 reads
This year we held our fourth Student to IT Pro Seminar for the students at Seminole State College. It runs...
2017-10-22
392 reads
Part 1 will be about things we did (or didn’t) do and some lessons learned. In Part 2 I will...
2017-10-19
430 reads
This was the first time in a long time that I managed the check-in process of SQLSaturday Orlando and was...
2017-10-18 (first published: 2017-10-09)
1,519 reads
Following up on my post about forming a non profit here in Orlando, here are some notes that might help...
2017-10-14
441 reads
We’ve haven’t had a good solution for managing money for SQLSaturday and our groups here in Orlando. In the early...
2017-09-12
427 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