Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Calculating percentages
Message
 
 
À
31/10/2011 08:54:17
Information générale
Forum:
Microsoft SQL Server
Catégorie:
Syntaxe SQL
Versions des environnements
SQL Server:
SQL Server 2005
Divers
Thread ID:
01527668
Message ID:
01527669
Vues:
45
In SQL Server division of 2 integers yields an integer. Try
select @first_year_retention_rate = cast(@no_plan_rowcount as decimal(18,2))/@member_rowcount * 100

print @first_year_retention_rate
>Whats wrong with this.
>
>
>PRINT @no_plan_rowcount  
>
>
>returns 816
>
>
>PRINT @member_rowcount
>
>
>returns 416
>
>
>select @first_year_retention_rate = @no_plan_rowcount/@member_rowcount * 100
>
>PRINT @first_year_retention_rate
>
>
>returns 0
>
>What am I doing wrong .
>
>Thanks
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