Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Problem with MAX() and Select
Message
 
 
Information générale
Forum:
Visual FoxPro
Catégorie:
Base de données, Tables, Vues, Index et syntaxe SQL
Versions des environnements
Visual FoxPro:
VFP 9 SP1
Divers
Thread ID:
01239957
Message ID:
01239958
Vues:
8
This message has been marked as the solution to the initial question of the thread.
You have to pass values as parameters because you cannot make any assumption about work areas that query uses.
SELECT * FROM MyTable WHERE test(DATE1, DATE2) > 10

FUNCTION test(tdDATE1, tdDATE2)
RETURN MAX(tdDATE1 - tdDATE2,0)
>I am experiencing a strange problem with the following code:
>
>
>SELECT * FROM MyTable WHERE test() > 10
>
>FUNCTION test
>RETURN (MAX(MyTable.DATE1-MyTable.DATE2,0))
>
>
>The code above returns (selects) no records if the value after test() is greater than 10 (e.g. test() > 11). However, many records in the table MyTable have value of DATE1 greater than DATE2 by more than even 20.
>
>What am I missing in my sample code above?
--sb--
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform