Brad or Spot?
Today we have another guest post from Steve Jones.
I’m no expert on animals, but I have a little experience out...
2011-10-24
619 reads
Today we have another guest post from Steve Jones.
I’m no expert on animals, but I have a little experience out...
2011-10-24
619 reads
Today we have a guest post from Phil Factor as Brad is on vacation.
‘ I used to fettle databases as...
2011-10-19
547 reads
Today we have a guest post from Steve Jones as Brad is on vacation.
Today we have the third question from...
2011-10-17
529 reads
By now, you should have already heard the big news. Red Gate Software is sending a DBA into space. When...
2011-10-13
863 reads
When it comes to databases, many DBAs obsess over performance, and for good reason, as when user’s begain to complain...
2011-10-01
1,092 reads
Red Gate Software will be providing a free, full-day SQL Server event called SQL in the City in Los Angeles,...
2011-09-30
1,411 reads
Two years ago when SQL Server MVP Deep Dives: Volume 1 was released, I had the opportunity to contribute two...
2011-09-30
1,775 reads
For some time now, I have been working on a new book called How to Perform a SQL Server Health...
2011-09-26
948 reads
I have only interviewed for a handful DBA jobs over the years, but they have ranged all the way from...
2011-09-01
651 reads
Tim Mitchell will be speaking at the SQLServerCentral.com track at SQL Server Connections, October 31-November 3, 2011, in Las Vegas,...
2011-08-24
794 reads
By Steve Jones
Redgate is a for-profit company. We look to make money by building and selling...
If you've ever loaded a 2 GB CSV into pandas just to run a...
By James Serra
What problem is Fabric Ontology trying to solve? For years, most data conversations have...
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