Read our blogs, tips and tutorials
Try our exercises or test your skills
Watch our tutorial videos or shorts
Take a self-paced course
Read our recent newsletters
License our courseware
Book expert consultancy
Buy our publications
Get help in using our site
547 attributed reviews in the last 3 years
Refreshingly small course sizes
Outstandingly good courseware
Whizzy online classrooms
Wise Owl trainers only (no freelancers)
Almost no cancellations
We have genuine integrity
We invoice after training
Review 30+ years of Wise Owl
View our top 100 clients
Search our website
We also send out useful tips in a monthly email newsletter ...
--Listing the EventNames with their categories next to them in one columnan with the usage of (CAST) functing
SELECT EventName + ' ' + '(Category' + ' ' + CAST(CategoryID AS nvarchar(10)) + ')' as [Event (Category)],
EventDate FROM tblEVent
--A query for the length of each event name listing them from the shortest to the longest
SELECT EventName, LEN(EventName) AS LengthCount
FROM tblEvent
ORDER BY LEN(EventName)
SELECT EventName, EventDate
FROM tblEvent
WHERE EventName like '%Teletubbies%' OR
EventName like '%Pandy%'
SELECT CategoryID, EventDetails
FROM tblEvent
WHERE CategoryID <> 14
AND EventDetails LIKE '%Train%'
SELECT CountryID, EventName, EventDetails
FROM tblEvent
WHERE CountryID = 13
AND (EventName NOT LIKE '%Space%'
AND EventDetails NOT LIKE '%Space%')
SELECT CategoryID, EventDetails
FROM tblEvent
WHERE (CategoryID = 5 OR CategoryID = 6)
AND EventDetails NOT LIKE '%War%'
AND EventDetails NOT LIKE '%Death%'
Kingsmoor House
Railway Street
GLOSSOP
SK13 2AA
Landmark Offices
99 Bishopsgate
LONDON
EC2M 3XD
Holiday Inn
25 Aytoun Street
MANCHESTER
M1 3AE
© Wise Owl Business Solutions Ltd 2024. All Rights Reserved.