PASS Travel Plans, Halloween, Networking Dinner, SQL Dinner & Game Night
Normally I fly out Monday to spend the week at PASS. It’s good to get there early to adjust to...
2017-09-10
505 reads
Normally I fly out Monday to spend the week at PASS. It’s good to get there early to adjust to...
2017-09-10
505 reads
Equipment can matter for IT professionals. Read a few thoughts from Andy Warren.
2017-09-07
66 reads
Today we’re starting on our 11th SQLSaturday here in Orlando. Normally we rotate the leadership between oPASS and MagicPASS, but...
2017-06-05
502 reads
I read with interest the post from Bob Pusateri that discusses what seems to be the next iteration of the...
2017-04-17
426 reads
Posting this mostly in case I need it again. I needed a merge tool for Git, Kdiff is free and...
2017-04-12 (first published: 2017-03-23)
868 reads
Notes on items I found interesting in the financial statement, recommend you download and read the entire document.
Global Alliance Partner...
2017-04-10
421 reads
The Murder Accountability Project is worth a look. It’s a reminder that gathering good data is hard, but once you...
2017-04-06
493 reads
It’s not easy to keep up with tech, here’s an update I missed – you can add params to the connection...
2017-04-05
663 reads
I wrote Only as Good as Your Auditor for SQLServerCentral because its something I’ve explained to people over and over...
2017-04-04
641 reads
I wrote How to Become a SQL Server Database Administrator (email address required for download) a few years ago as a project...
2017-04-03
531 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