Wednesday, July 26, 2006
For the LAST Time
11:41 |
Posted by
Sean McCown |
Edit Post
There's no such thing as varchar(1).
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
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