data type

Blogs

A Couple Quick GENERATE_SERIES Tests

By

I had someone reach out about generate_series() recently, saying they hadn’t realized this was...

How I passed the DP-700 Exam

By

I recently took and passed the DP-700 exam, which is required for the Microsoft...

Which approach to take: Build it, buy it, cloud it?

By

As a Consultant, I would typically answer with – it depends! Then a typical...

Read the latest Blogs

Forums

how to output date of when a SP was created and last modification?

By water490

Hi everyone I have a query that gives me the list of all SP...

Getting error in sql server 2022

By zacharyfull

Hi folks We have migrated database from sql server 2014 std to sql server...

Source to Target Mapping (Lineage)

By glenn.selby

Hi all, I work with an unusual warehouse and I was wondering if anyone...

Visit the forum

Question of the Day

The Character choice

What happens when I run this code in SQL Server 2022?

create table Names
( namestring varchar(20))
go
insert Names select 'Steve'
go
select choose(namestring, 'steve', 'andy', 'brian')
from Names

See possible answers