Tuesday, September 02, 2008 - Posts

Empty string and Default values
02 September 08 08:56 AM | Madhivanan | 2 Comments   
Often newbies use empty string and consider it as NULL. But when an empty string is passed, it may not be stored as empty string or NULL. It actually depends on the datatype of the column Consider this example DECLARE @t TINYINT , @s SMALLINT , @i INT Read More...