Our training courses

Other training resources

Our training venues

Why we are different

Details for walteragwe

walteragwe has participated in the following threads:

Added by walteragwe on 21 Jan 2021 at 03:09

SELECT [AuthorName],[DoctorName],COUNT([EpisodeId]) AS [No of episodes]
FROM   [dbo].[tblAuthor]  A INNER JOIN [dbo].[tblEpisode] E
ON   A.AuthorId = E.AuthorId INNER JOIN [dbo].[tblDoctor] D
ON   E.DoctorId = D.DoctorId
GROUP BY [AuthorName],[DoctorName]
HAVING COUNT([EpisodeId]) > 5
ORDER BY [No of episodes] DESC;
GO

Added by walteragwe on 21 Jan 2021 at 02:47

SELECT [AuthorName], COUNT([EpisodeId]) AS [# OF EPISODES],
       MIN([EpisodeDate]) AS [Earliest epi Date],
       max([EpisodeDate]) as [latest epi Date]
FROM   [dbo].[tblAuthor] AS A INNER JOIN [dbo].[tblEpisode] AS E
       ON A.AuthorId = E.AuthorId
GROUP BY [AuthorName]
order by [# OF EPISODES] desc;
GO

Added by walteragwe on 20 Jan 2021 at 03:43

SELECT  cm.[CompanionId],[CompanionName]
FROM [dbo].[tblCompanion] AS cm left outer JOIN [dbo].[tblEpisodeCompanion] AS Ec
ON cm.CompanionId = Ec.CompanionId
except
(SELECT  cm.[CompanionId],[CompanionName]
FROM [dbo].[tblCompanion] AS cm inner JOIN [dbo].[tblEpisodeCompanion] AS Ec 
ON cm.CompanionId = Ec.CompanionId);
GO

Head office

Kingsmoor House

Railway Street

GLOSSOP

SK13 2AA

London

Landmark Offices

99 Bishopsgate

LONDON

EC2M 3XD

Manchester

Holiday Inn

25 Aytoun Street

MANCHESTER

M1 3AE

© Wise Owl Business Solutions Ltd 2024. All Rights Reserved.

End of small page here
Please be aware that our website uses cookies!
I'm OK with this Tell me more ...