The Counter Offer - Part 2
Today we have a guest editorial from Andy Warren that takes another view of the counter offer from your employer.
2019-04-03 (first published: 2015-09-18)
553 reads
Today we have a guest editorial from Andy Warren that takes another view of the counter offer from your employer.
2019-04-03 (first published: 2015-09-18)
553 reads
Today we have a guest editorial from Andy Warren that looks at the challenge of getting a counter offer from your employer.
2019-04-02 (first published: 2015-09-17)
1,306 reads
Today we have a guest editorial from Andy Warren as Steve is away on vacation. This was originally published on Dec 23, 2014. I was reflecting recently on my first real IT job. It was a small-ish company when I joined it, perhaps a hundred employees or so, and still using a mishmash of software […]
2019-02-18 (first published: 2014-12-23)
198 reads
When you take a job, do you ask about holidays? Do you consider them a benefit? Andy Warren asks what those holidays might mean to you.
2018-10-25 (first published: 2015-03-03)
209 reads
The right tool is important for a good job. Andy Warren asks if you're thought about the tools you use on a daily basis.
2018-10-17
57 reads
Andy Warren talks about the single source of truth for information. It could be the database, but that's not always the best choice.
2018-10-09
232 reads
Do we need the right tool or just a tool? A guest editorial from Andy Warren gives a few thoughts on getting things done effectively.
2018-09-28
48 reads
2018-08-31
78 reads
2018-06-21
141 reads
Today we have a guest editorial from Andy Warren that asks what you might do when you get settled at a new job.
2018-06-19 (first published: 2015-04-10)
234 reads
By Steve Jones
How to apologize: quickly, specifically, sincerely. Don’t ruin an apology with an excuse –...
Try this step-by-step guide to build and deploy a scalable serverless app that’s accessible...
Want to boost your SQL game? Check out this free course, SQL Subqueries: Real-World...
Code that can be used in order to create dashboard or SSRS report on...
So, I have an interesting situation that I need a double-check on. One of...
I have this data in a SQL Server 2022 table:
PlayerIDPlayerNamePlayerStatus 1The \%ChampActive 2The ChampActive 3The_ChampionActive 4The__ChampionActive 5The\_ChampActiveHow many rows are returned by this code in SQL Server 2022?
select PlayerName from player where playername like 'The\_C%' escape '\'See possible answers