Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
T-SQL equivalent to VFP MAX()
Message
 
 
Information générale
Forum:
Microsoft SQL Server
Catégorie:
Autre
Versions des environnements
SQL Server:
SQL Server 2014
Application:
Web
Divers
Thread ID:
01620217
Message ID:
01620235
Vues:
48
>>Hi,
>>
>>When executing SQL Select and you need the resulting value not to be negative, what is the equivalent of VFP MAX() function? For example, if VFP you can do:
>>
>>Select MAX(Field1,0) from Table
>>
>>
>>Is CASE WHEN the only option in SQL Server, as:
>>
>>
>>select CASE WHEN Field1 < 0 THEN 0 ELSE Field1 END from Table
>>
>>
>>TIA
>
>The first code will not work in VFP. MAX() function in SQL-Select is not the same as MAX() function in a statement.
>
>CASE solution is good in SQL Server. In SQL Server 2012 and up you can also use IIF function.

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
Répondre
Fil
Voir

Click here to load this message in the networking platform