Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Select and return PK value
Message
 
 
Information générale
Forum:
Microsoft SQL Server
Catégorie:
Stored procedures, Triggers, UDFs
Divers
Thread ID:
01673328
Message ID:
01673338
Vues:
35
What is the type of the @EqupmentId variable? If it's integer, then you may want

if COALESCE(@EquipmentId, 0) !=0 -- this tests for value being not null and not 0



>>Why does it have to be one line?
>>
>>if COALESCE(@EquipmentId,'') !=''
>>   begin
>>   select @Pk = equip_pk from dbo.eq_file where Id_Number = @EquipmentId;
>>   if @Pk==null
>>             begin
>>                 raieserror ...
>>                 return 
>>             end
>>     end
>
>I don't know how COALESCE() works but in my test, when I pass a value to @EquipmentId, the code never goes to SELECT ..
If it's not broken, fix it until it is.


My Blog
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform