Making Better Numbers

In our last post, we discussed fixing dates so that they’re more of what the users expect. In this post, I want to talk about changing numbers. First off, it’s actually a very common thing to change a number from one type to another. For example, I’m often asked to change a decimal into an…… Continue reading Making Better Numbers

Making A Better Date

In the last few posts, we’ve discussed different ways of “prettifying” – yes, a very technical word – dates. And no, we’re not talking about the kind you can eat or go on. Healthy Dates Nope, we’re talking about this kind of date: https://www.youtube.com/watch?v=cx5jt0zrJ9E Let’s say you’re busy coding along and you come to the…… Continue reading Making A Better Date

The End of the TOP

After dealing with TOP and ROWCOUNT in SQL Server, there is one more way of getting a limited amount of data from a query that you should be aware of – OFFSET/FETCH. It can be a little bit more difficult to set up and work with but if you’re in need of the data a…… Continue reading The End of the TOP

Not Quite To the Top

After the past few blog posts, I’m sure you’re like “Sherpa! How many more things can we learn about the TOP Operator?” My friends, the answer is “Still more!” Today, let’s go over an option that can be used in conjunction with TOP. That option is SET ROWCOUNT (Number); This option has the potential to…… Continue reading Not Quite To the Top