Microsoft’s First iPhone Application
Can you believe it? Microsoft has just released an iPhone application for the first time and I doubt it will...
2008-12-17
2,051 reads
Can you believe it? Microsoft has just released an iPhone application for the first time and I doubt it will...
2008-12-17
2,051 reads
I was recently tagged by Tim Mitchell to give a response to Chris Shaw’s SQL Quiz Part 2 so here...
2008-12-15
817 reads
I had another chance last week to answer an email follow up question from the session Brian and I gave...
2008-12-15
8,509 reads
I’ve been asked several times lately from non-SQL developers that are sometimes required to do some quick SQL work how...
2008-12-08
3,409 reads
General Thoughts
One of my brother’s favorite lines to use in presentations says it best, “If Microsoft had 10 dollars to...
2008-12-02
959 reads
So now that PASS is over and life is getting back to normal I thought it would share my final...
2008-11-24
1,591 reads
It’s been a great week at PASS thus far and many others have written on their experiences so I’ll do...
2008-11-20
577 reads
User groups provide so many benefits for those looking to get ahead in their career. User Groups share a common...
2008-11-10
505 reads
In my previous posts The Wise Old Man Part 1, The Wise Old Man Part 2 and The Wise Old...
2008-11-05
825 reads
In my previous posts The Wise Old Man Part 1 and The Wise Old Man Part 2 I wrote about...
2008-11-03
712 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