Stepping Stone Cert II
Back on March 30, I wrote about a Stepping Stone Certification that seems to be missing between the MCM and...
2010-04-20
745 reads
Back on March 30, I wrote about a Stepping Stone Certification that seems to be missing between the MCM and...
2010-04-20
745 reads
This month for my second submission into T-SQL Tuesday, I decided to go with something that provides some insight into...
2010-04-13
1,150 reads
We held our meeting last night and had a good time. Thanks to those that were able to make it...
2010-04-09
456 reads
Have you ever done anything that made you feel like a dunderhead? Maybe a little bone-headed, thick, numb-skullish?
Here is my...
2010-04-07
562 reads
As chance would have it, I had been checking Adam’s blog daily for the last few days to find the...
2010-04-06
1,764 reads
S3OLV or SSSOLV will be holding our meeting Thursday April 8th. The User Group is in affiliation with PASS and...
2010-04-06
462 reads
As we close out the First Quarter of 2010 it is time to review progress made on the Goals I...
2010-04-01
503 reads
I recently came across an interesting script to help show index info and usage. As I began to dissect the...
2010-03-31
1,998 reads
I had bigger plans for this series than what has transpired. I think that is a testament as to how...
2010-03-30
1,946 reads
A few of us have been deliberating and discussing the need for a bridge certification between the MCITP and MCM...
2010-03-30
1,544 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