Speaking at SQL Saturday #513 in Albany, NY on July 30th – PowerShell and SQL Server
If you are a SQL Server professional and are interested in spending a day with a bunch of other like-minded...
2016-07-18
324 reads
If you are a SQL Server professional and are interested in spending a day with a bunch of other like-minded...
2016-07-18
324 reads
If you are a SQL Server professional and are interested in spending a day with a bunch of other like-minded...
2016-07-18
137 reads
Another Twitter-born blog post! I love getting new ideas from the community. Real world ideas for solving real world problems!
The...
2016-06-23
1,240 reads
Another Twitter-born blog post! I love getting new ideas from the community. Real world ideas for solving real world problems!
The...
2016-06-23
313 reads
This blog post is just a quick follow from my presentation last week for the SQL PASS PowerShell Virtual Chapter.
Here...
2016-06-06
96 reads
This blog post is just a quick follow from my presentation last week for the SQL PASS PowerShell Virtual Chapter.
Here...
2016-06-06
456 reads
There are obviously quite a few things that could cause internet issues that are totally out of our control, but...
2016-04-27
879 reads
There are obviously quite a few things that could cause internet issues that are totally out of our control, but...
2016-04-27
463 reads
If you are a SQL Server professional and are interested in spending a day with a bunch of other like-minded...
2016-04-12
389 reads
If you are a SQL Server professional and are interested in spending a day with a bunch of other like-minded...
2016-04-12
110 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