Write for SQLServerCentral - Bonus for Azure
We're always looking for articles, but here are a few ones that I'd like to see written up.
2016-04-29 (first published: 2014-09-04)
1,987 reads
We're always looking for articles, but here are a few ones that I'd like to see written up.
2016-04-29 (first published: 2014-09-04)
1,987 reads
2014-08-21 (first published: 2014-08-19)
1,657 reads
2014-05-27
1,130 reads
A new plug in for Management Studio from Red Gate is free. It will give you access to all the scripts at SQLServerCentral, including your own briefcase.
2014-05-15
3,858 reads
We are looking for new content here for the site, based on your experiences in the real world. Submit something and get yourself published.
2014-05-22 (first published: 2014-04-10)
2,031 reads
We've made a change to the forums at SQLServerCentral. Learn how you can mark a post as an answer to your question and help others.
2014-02-10
692 reads
A congratulations to the winners of our contest last week.
2013-12-16
1,327 reads
After a plagiarized article this week, a content for you.
2013-12-05
12,040 reads
We've made a few changes to the site, and we want you to check them out.
2013-10-07
1,291 reads
The SQLServerCentral.com survey will end on Wednesday August 21st. Let us know how we're doing and be in with a chance to win a $100 Amazon gift card. Winners will be announced later that week.
2013-08-15
2,625 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