Subscribe to:
Post Comments (Atom)
About Me

- Sean McCown
- I am a Contributing Editor for InfoWorld Magazine, and a frequent contributor to SQLServerCentral.com as well as SSWUG.org. I live with my wife and 3 kids, and have practiced and taught Kenpo for 22yrs now.
Labels
Blogumulus by Roy Tanck and Amanda Fazani
Page Views
1 comments:
DECLARE @a VARCHAR(1)
DECLARE @b CHAR(1)
set @a = ''
set @b = ''
SELECT '''' + @a + '''', '''' + @b + ''''
set @a = ' '
set @b = ' '
SELECT '''' + @a + '''', '''' + @b + ''''
Post a Comment