Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Is this acceptable way to set multiple values in one lin
Message
 
 
À
02/06/2012 06:40:34
Information générale
Forum:
Microsoft SQL Server
Catégorie:
Autre
Versions des environnements
SQL Server:
SQL Server 2005
Divers
Thread ID:
01545039
Message ID:
01545149
Vues:
53
>>Hi,
>>
>>I was wondering if I would be breaking some unwritten rule or good practice if I set multiple variables in one line/statement, as following:
>>
>>
>>declare @test1 as char(20), @test2 as char(10), @test3 as varchar(30)
>>select @test1 = '', @test2 = '', @test3 = ''
>>
>>
>>TIA
>
>or
>
>declare @test1 as char(20) = ''
>          , @test2 as char(10) = ''
>          , @test3 as varchar(30) = ''
>
I believe this syntax only works on SQL Server 2008 and later. I need my code to work on SQL Server 2005 where (if I am not mistaken) the feature of setting default is not available.
Thank you.
"The creative process is nothing but a series of crises." Isaac Bashevis Singer
"My experience is that as soon as people are old enough to know better, they don't know anything at all." Oscar Wilde
"If a nation values anything more than freedom, it will lose its freedom; and the irony of it is that if it is comfort or money that it values more, it will lose that too." W.Somerset Maugham
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform