|
|
Browse by Tags
All Tags » SQL Server » null
-
Do you think column order doesn't matter in SQL Server tables? Well, if you say it doesn't I would say the same thing as always: ''it depends'' :-)
On SQL Server 2005 instance let's create some table with 50 nullable varchar columns:
[code language=''T-SQL'']USE tempdbGO
IF OBJECT_ID('tempdb.dbo.test_varchar') IS NOT NULL DROP ...
|
|
|