Skip to content
Advertisement

What do the quotes mean in this SQL Server snippet? (SELECT ” column1, ” column 2)

I’d like to know the purpose of the two single quotes in front of each column. This is in a stored procedure. Thank you for your help!

Advertisement

Answer

The expression '' is an empty string. So this is using an empty string instead of NULL for “missing” values.

I would write this code as:

This might make it clearer. I always use as for column aliases — so it is easier to spot missing commas (there should always be an as for a column alias).

More commonly, this would probably just use default values (which are usually NULL but could be ''):

User contributions licensed under: CC BY-SA
7 People found this is helpful
Advertisement