Work/Training Balance - The hidden balancing act
Should we be considering our Work/Training Balance as part of our careers?
2021-06-23 (first published: 2016-12-05)
238 reads
Should we be considering our Work/Training Balance as part of our careers?
2021-06-23 (first published: 2016-12-05)
238 reads
2017-02-16
115 reads
Quality is a driver for productivity. Or so say I. What do you think.
2017-02-14
94 reads
2016-05-02
90 reads
What data specific considerations do you make when preparing for performance testing?
2014-08-07
258 reads
2014-07-14
1,915 reads
Lowering the bar for entry does not mean lowering the bar for quality. New to SQL Server? Find out where to start.
2014-06-03
381 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