SQL RNNR

Blog Post

S3OLV July Recap

This month we had our first adventure in LiveMeeting presentations.  We had the pleasure of listening to Jack Corbett give...

2010-07-12

426 reads

Blog Post

SQL 2008 DTS

It’s a Bird…
No, not really.   It’s just Windows 7.   I have recently upgraded to Windows 7.  I took the roundabout...

2010-07-07

3,412 reads

Blogs

Using SQLFluff

By

I thought I didn’t care about linting, and lately, I haven’t written a lot...

Marketing Analyst: The Data-Driven Superhero Your Company Needs

By

Want to blend your love of marketing with the power of data? Becoming a...

Can You See Table Valued Parameters in Extended Events?

By

I live for questions and this was an interesting one. Can you see Table...

Read the latest Blogs

Forums

Dynamic T-SQL Script Parameterization Using Python

By omu

Comments posted to this topic are about the item Dynamic T-SQL Script Parameterization Using...

Lower Your Attack Surface Area

By Steve Jones - SSC Editor

Comments posted to this topic are about the item Lower Your Attack Surface Area

Understanding SQL Server LEFT_SHIFT and RIGHT_SHIFT Functions

By Noman072

Comments posted to this topic are about the item Understanding SQL Server LEFT_SHIFT and...

Visit the forum

Question of the Day

A Strange Choice

What is returned when I run this code in SQL Server 2022?

CREATE TABLE CatIndex
( indexval VARCHAR(20)
)
GO
INSERT dbo.CatIndex (indexval) VALUES ('1'), ('2'), ('3')
GO
SELECT CHOOSE(indexval, cast('2025-01-01' AS DATE), CAST('2025-02-01' AS DATE), CAST('2025-03-01' AS DATE))
FROM dbo.CatIndex AS ci

See possible answers